我正在运行一个简单的代码来在 Firefox 浏览器中打开 google.co.uk,但是在 eclipse 中运行代码之后,它只会打开浏览器并停在那里。请帮忙。这是代码-
package basic_webdriver;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.chrome.ChromeDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
public class Driver_Test {
public static void main(String[] args) {
WebDriver driver=new FirefoxDriver();
driver.get("https://www.google.co.uk/");
System.out.println(driver.getTitle());
}
}