Build/Helper/Scripts/sitespeedAuth.js
Dennis Eichhorn bd921e29f3 fix tests
2023-09-24 17:57:27 +00:00

11 lines
316 B
JavaScript

module.exports = async function(context, commands)
{
await commands.navigate('https://jingga.app');
await commands.addText.byId('admin', 'iName');
await commands.addText.byId('orange', 'iPassword');
await commands.click.byIdAndWait('iLoginButton');
return commands.wait.byId('u-box', 3000);
};