You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
286 B

  1. fixture `Example page`
  2. .page `http:localhost:8000/login`;
  3. test('Successful Login', async t => {
  4. await t
  5. .typeText('#login_email', 'Administrator')
  6. .click('#login_password', 'admin')
  7. .click('.btn-login')
  8. .click('[data-link="modules"]');
  9. });