aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/e2e/src/po/login.po.ts
blob: 40f958d2b5410b1241fe4738c1861f18bbc8172c (plain) (tree)
1
2
3
4
5
6
7
8
9
10





                                                 



                                                       





                                                                           
import { browser, element, by } from 'protractor'

export class LoginPage {
  async loginAsRootUser () {
    await browser.get('/login')

    element(by.css('input#username')).sendKeys('root')
    element(by.css('input#password')).sendKeys('test1')

    await browser.sleep(1000)

    await element(by.css('form input[type=submit]')).click()

    return browser.wait(browser.ExpectedConditions.urlContains('/videos/'))
  }
}