You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am working on mobileweb Selenium-Appium-Java test script development. The scenario is like this.
User clicks on 'Shop' hamburger menu
It opens 'Conduit' and other menu items
User clicks on 'Conduit' item, which opens the submenu items 'Steel Conduit', 'Aluminium Conduit' , plus many other items.
In iOS alone, while Android testing is running as expected, that after 'Shop' is clicked and 'Conduit' item has showed up, and even before 'Conduit' is clicked to see the 'Steel Conduit' item, the 'Conduit' is collapsing in to it's parent 'Shop'.
This is causing the WebElement for 'Steel Conduit' is failing to be located, rightfully so as it has been under 'Conduit' which has collapsed in to 'Shop' already.
I am using the following coding:--
//'Shop' menu item under hamburger menu in the mobile
waitingDriver.until(ExpectedConditions.visibilityOfElementLocated(By.xpath("(//span[@class='toggle'])[2]"))).click();
doWait(3000);
// category item under 'Shop' menu item
WebElement categoryElm = waitingDriver.until(ExpectedConditions.elementToBeClickable(By.xpath(String.format("//a[contains(text(),'%s')]",category))));
doWait(3000);// sleep method
I am working on mobileweb Selenium-Appium-Java test script development. The scenario is like this.
The text was updated successfully, but these errors were encountered: