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.
2 parents 2092c7d + 1bcd892 commit 594796aCopy full SHA for 594796a
android/testng-examples/WikipediaSample.apk
-2.15 MB
android/testng-examples/src/test/java/com/browserstack/FirstTest.java
@@ -15,6 +15,10 @@ public class FirstTest extends AppiumTest {
15
16
@Test
17
public void test() throws Exception {
18
+ WebElement skipButton = (WebElement) new WebDriverWait(driver, Duration.ofSeconds(30)).until(
19
+ ExpectedConditions.presenceOfElementLocated(AppiumBy.id("org.wikipedia.alpha:id/fragment_onboarding_skip_button")));
20
+ skipButton.click();
21
+
22
WebElement searchElement = (WebElement) new WebDriverWait(driver, Duration.ofSeconds(30)).until(
23
ExpectedConditions.elementToBeClickable(AppiumBy.accessibilityId("Search Wikipedia")));
24
0 commit comments