Posts by Elpidio Neto • 27 points
4 posts
-
1
votes3
answers3334
viewsA: Close Windows popup in Java (Selenium Webdriver)
Exception in thread "main" org.openqa.Selenium.Nosuchwindowexception: No window found (WARNING: The server Did not provide any stacktrace information) This error message indicates that Selenium…
-
0
votes3
answers711
viewsA: Drive Alert using Selenium in Java
to interact with the Alerts I do the following Just like @João // pega o alert que está aberto Alert alert = driver.switchTo().alert(); // confirma alert.accept(); But I also add: // aperta o…
-
1
votes2
answers294
viewsA: How does Junit work?
How the Junit open-source framework works? The Junit framework serves to verify that what is being produced works properly. Usually most bugs are not by syntax error, but by problems in the output…
-
-1
votes3
answers158
viewsA: Declaration of Java variables
Which is the best? Neither of the two changes anything, the best choice is the one you feel most comfortable wearing and that people can understand. For we write the code so that others may read…