只创建了一个类和方法,但是testng两次启动浏览器,而直接使用main方法时,testng只启动一次浏览器。
public class Testngcall {
@Test
public static void main() throws Exception
{
System.setProperty("webdriver.chrome.driver", "C:\\Users\\karthik\\chromedriver.exe");
WebDriver driver = new ChromeDriver();
driver.get("https://www.youtube.com/");
Thread.sleep(3000);
driver.close();
}
}
答案 0 :(得分:1)
检查任务管理器中是否有两个实例在运行。通常,当有多个实例同时运行时会发生这种情况。