UNPKG
cc-invoice
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Simple Invoice App Made with Angular @latest
bitbucket.org/farmanahmed2007/cc-invoice
cc-invoice
/
e2e
/
src
/
app.po.ts
12 lines
(9 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ browser, by, element }
from
'protractor'
;
export
class
AppPage
{
navigateTo
(
) {
return
browser.
get
(browser.
baseUrl
)
as
Promise
<
any
>; }
getTitleText
(
) {
return
element
(by.
css
(
'app-root .content span'
)).
getText
()
as
Promise
<
string
>; } }