Skip to content

Commit fda383f

Browse files
author
Dimitar Todorov
committed
Add wait step before Continuebutton on Login
1 parent e91c5ee commit fda383f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

demo-vue/e2e/test.e2e.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,11 @@ describe("Facebook tests", async function () {
9494
if (isAndroid) {
9595
const logInButton = await driver.findElementByClassName(driver.locators.button);
9696
await logInButton.click();
97-
await driver.wait(500);
97+
await driver.wait(2000);
9898
} else {
9999
const logInButton = await driver.findElementByText("Log In");
100100
await logInButton.click();
101+
await driver.wait(2000);
101102
}
102103
const continueButton = await driver.findElementByText("Continue", SearchOptions.exact);
103104
await continueButton.click();

0 commit comments

Comments
 (0)