-
-
Notifications
You must be signed in to change notification settings - Fork 13
Missing await keyword #86
Copy link
Copy link
Open
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed
Description
Activity
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workinghelp wantedExtra attention is neededExtra attention is needed
The async scripts works very well, thank you!
One note though, is that it forgets to add the
awaitkeyword on lines like this one:const inputClassic = $(selectors.inputClassic);where it should transform those into:
const inputClassic = await $(selectors.inputClassic);.Do note that it does add the
awaitkeyword in lines like that:expect($(selectors.elementP1).getText()).toEqual('2.140%');(to:
expect(await $(selectors.elementP1).getText()).toEqual('2.140%');)