Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. import { Selector } from 'testcafe';
  2.  
  3. export class LoginPage {
  4. constructor () {
  5. this.login = Selector('#login_field');
  6. this.password = Selector('#password');
  7. this.signIn = Selector('.btn').withAttribute('value', 'Sign in');
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement