Я не могу запустить программу testng
, поскольку она выдает ошибку classpath
. Я уже добавил testng
библиотеки:
org.testng.TestNGException: Не удается найти класс в classpath: testngBasi c
package mobileAutomation;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.Test;
public class testngBasic {
WebDriver driver;
@BeforeMethod
public void setUP() {
System.setProperty("webdriver.chrome.driver", "C:\\drivers\\chromedriver.exe");
driver = new ChromeDriver();
driver.manage().window().maximize();
driver.manage().deleteAllCookies();
driver.manage().timeouts().pageLoadTimeout(10, TimeUnit.SECONDS);
driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);
driver.get("https://www.google.com");
}
@Test
public void getTitle() {
String googleTitle = driver.getTitle();
System.out.println(googleTitle);
}
@AfterMethod
public void closeBrowser() {
driver.quit();
}
}