0

我正在运行一个简单的代码来在 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());
    }

}
4

1 回答 1

0

尝试

    driver.Navigate().GoToUrl("https://www.google.co.uk/");

Navigate 函数告诉浏览器导航到某个地方。GoToURL 函数指示浏览器应该导航到特定的 URL。URL 的字符串作为 GoToURL 的参数输入。

以上应该使浏览器导航到特定的 URL。

于 2014-07-01T14:50:41.330 回答