mirror of
https://github.com/Karaka-Management/Build.git
synced 2026-01-11 11:48:40 +00:00
11 lines
316 B
JavaScript
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);
|
|
}; |