We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b59cae0 commit 08259bdCopy full SHA for 08259bd
demo-vue/e2e/test.e2e.ts
@@ -96,7 +96,13 @@ describe("Facebook tests", async function () {
96
await logInButton.click();
97
await driver.wait(2000);
98
}
99
- const continueButton = await driver.findElementByText("Continue", SearchOptions.exact);
+ let continueButton;
100
+ if(driver.isAndroid){
101
+ continueButton = await driver.findElementByAccessibilityId("Continue")
102
+ }
103
+ else{
104
+ continueButton = await driver.findElementByText("Continue", SearchOptions.exact);
105
106
await continueButton.click();
107
await driver.wait(1000);
108
const userNameLabel = await driver.findElementByText("Nativescript User", SearchOptions.contains);
0 commit comments