Posts by Rodrigo Pili • 7 points
4 posts
-
-2
votes1
answer241
viewsA: Error in Java connection to Mysql Database
Vinicius Souza, I think the problem is in the jdbc driver of your mysql, try to use the driver in another version. Abç.
-
0
votes1
answer101
viewsA: How to reuse a String in another Step of my test?
Caique Pena, Try the following: 1- Create a global variable; 2- populate the variable with the value you want; 3- reuse in another method; public class Steps(){ int idade; public void pegaIdade(){…
-
0
votes3
answers1305
viewsA: Validate element in Selenium Webdriver
Edvaldo Torres, Try to do the following: if(botaoAvancar.isDisplayed()){ botaoAvancar.click(); botaoConcluir.click(); }else{ botaoConcluir.click(); } isDisplayed() -> this method validates…
-
1
votes1
answer35
viewsA: Use another class method to register in the database using DAO
Karlos, I do not understand very well what you want to do. But I will try to explain here. If you do not understand can send your question again. 1- I do not know what data you want to calculate,…