Onur Serbes

Results 4 comments of Onur Serbes

I was using those two from the beginning. Normaly it's working without any problem. My automation is working, but when I tried to use isDisplayed() it gives me the error....

This is the java file that I used. You can see the all implementation from here https://gist.github.com/OnurSerbes/b870f0b14ea2b010413aae5e8d08c0e8

I changed it with AndroidDriver (you can check the gist again), and uncommented this block ``` if (driver.findElement(By.xpath("blabla")).isDisplayed()) { WebElement store = driver.findElement(By.xpath("blabla")); String storeText = store.getText(); System.out.println("store: " +...

In some pages it exists I can take the text but some of them don't have it, that is the reason why I am using isDisplayed() am I using wrong...