Classe LeiloesTest
package leiloes;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import org.junit.Assert;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.Test;
import br.com.alura.leilao.login.LoginPage;
public class LeiloesTest {
private LeiloesPage paginaDeLeiloes;
@AfterEach
public void afterEach() {
this.paginaDeLeiloes.fechar();
}
@Test
public void deveriaCadastrarLeilao () {
LoginPage paginaDeLogin = new LoginPage();
paginaDeLogin.preencheFormularioDeLogin("fulano", "pass");
this.paginaDeLeiloes = paginaDeLogin.efetuaLogin();
CadastroLeilaoPage paginaDeCadastro = paginaDeLeiloes.carregarFormulario();
String hoje = LocalDate.now().format(DateTimeFormatter.ofPattern("dd/MM/yyyy"));
String nome = "Leilao do dia" +hoje;
String valor = "500.00";
this.paginaDeLeiloes = paginaDeCadastro.cadastrarleilao(nome, valor, hoje);
Assert.assertTrue(paginaDeLeiloes.isLeilaoCadastrado(nome, valor, hoje));
}
}
Classe LeiloesPage
package leiloes;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
public class LeiloesPage {
private static final String URL_CADASTRO_LEILAO = "http://localhost:8080/login/new";
private WebDriver browser;
public LeiloesPage(WebDriver browser) {
this.browser = browser;
}
public void fechar() {
this.browser.quit();
}
public CadastroLeilaoPage carregarFormulario() {
this.browser.navigate().to(URL_CADASTRO_LEILAO);
return new CadastroLeilaoPage(browser);
}
public boolean isLeilaoCadastrado(String nome, String valor, String data) {
WebElement linhaDaTabela = this.browser.findElement(By.cssSelector("#tabela-leiloes tbody tr:last-child"));
WebElement colunaNome = linhaDaTabela.findElement(By.cssSelector("td:nth-child(1)"));
WebElement colunaDataAbertura = linhaDaTabela.findElement(By.cssSelector("td:nth-child(2)"));
WebElement colunaValorInicial = linhaDaTabela.findElement(By.cssSelector("td:nth-child(3)"));
return colunaNome.getText().equals(nome) &&
colunaDataAbertura.getText().equals(data) &&
colunaValorInicial.getText().equals(valor);
}
}
Classe CadastroLeilaoPage
package leiloes;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
public class CadastroLeilaoPage {
private WebDriver browser;
public CadastroLeilaoPage(WebDriver browser) {
this.browser = browser;
}
public void fechar() {
this.browser.quit();
}
public LeiloesPage cadastrarleilao(String nome, String valorInicial, String dataAbertura) {
this.browser.findElement(By.id("nome")).sendKeys(nome);
this.browser.findElement(By.id("valorInicial")).sendKeys(valorInicial);
this.browser.findElement(By.id("dataAbertura")).sendKeys(dataAbertura);
this.browser.findElement(By.id("button-submit")).submit();
return new LeiloesPage(browser);
}
}
Erro ao rodar a classe LeiloesTest:
*org.openqa.selenium.NoSuchElementException: no such element: Unable to locate element: {"method":"css selector","selector":"#nome"} *