Skip to content

Instantly share code, notes, and snippets.

@VasilyStrelyaev
Created July 24, 2017 08:24
Show Gist options
  • Save VasilyStrelyaev/45b4cf3dbbf3342b6a2ff9e74427d962 to your computer and use it in GitHub Desktop.
Save VasilyStrelyaev/45b4cf3dbbf3342b6a2ff9e74427d962 to your computer and use it in GitHub Desktop.
import { Selector } from 'testcafe';
export class LoginPage {
constructor () {
this.login = Selector('#login_field');
this.password = Selector('#password');
this.signIn = Selector('.btn').withAttribute('value', 'Sign in');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment