selenium4.0 java firefox 代码
时间: 2023-12-26 22:26:27 浏览: 89
以下是使用Selenium 4.0和Java在Firefox浏览器中打开网页的示例代码:
```java
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;
import org.openqa.selenium.firefox.FirefoxOptions;
public class FirefoxExample {
public static void main(String[] args) {
// 设置Firefox浏览器的路径
System.setProperty("webdriver.gecko.driver", "/path/to/geckodriver");
// 创建FirefoxOptions对象,设置浏览器参数
FirefoxOptions options = new FirefoxOptions();
options.addArguments("--headless"); // 无头模式,不显示浏览器界面
// 创建FirefoxDriver对象,启动Firefox浏览器
WebDriver driver = new FirefoxDriver(options);
// 打开网页
driver.get("https://www.example.com");
// 输出网页标题和URL
System.out.println("Page title is: " + driver.getTitle());
System.out.println("Page URL is: " + driver.getCurrentUrl());
// 关闭浏览器
driver.quit();
}
}
```
阅读全文