Olá, estou fazendo alguns testes, porém comecei este teste e quando vou dar o Run as não aparece a opção do Junit
package br.com.maiconhatada.acesso; import org.junit.jupiter.api.AfterAll; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver;
public class AcessoTest {
private static final String URL_LOGIN = "https://mvnrepository.com/artifact/junit/junit/4.13.2";
private WebDriver browser;
@BeforeAll
public void beforeAll() {
System.setProperty("wedriver.chromedriver", "drivers./chromedriver.exe");
}
@BeforeEach
public void beforeEach() {
this.browser = new ChromeDriver();
this.browser.navigate().to(URL_LOGIN);
}
@AfterAll
public void afterAll() {
this.browser.quit();
}
@Test
public void deveAcessarOferta() {
this.browser.findElement(By.id("see_offer_btn")).submit();
}
}
essas sao as dependencias:
org.seleniumhq.selenium selenium-chrome-driver 3.141.59 commons-io commons-io 2.6 junit junit 4.13.2 test io.cucumber cucumber-junit 7.3.4 test não consegui identificar onde esta meu erro, ainda nao terminei o codigo, pois fiquei parado nesse problema