java+selenium3学习之一启动firefox浏览器

Posted sunny_2016

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java+selenium3学习之一启动firefox浏览器相关的知识,希望对你有一定的参考价值。

package ceshi.com.lessons;
import java.util.concurrent.TimeUnit;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class LuanchFirefox {


public static void main(String[] args) {
System.setProperty ( "webdriver.firefox.bin" , "D:/Program Files (x86)/Mozilla Firefox/firefox.exe" );
System.setProperty("webdriver.gecko.driver", ".\\Tools\\geckodriver.exe");
WebDriver dr=new FirefoxDriver();
dr.manage().window().maximize();
dr.manage().timeouts().implicitlyWait(8, TimeUnit.SECONDS);
dr.get("http://www.baidu.com");
System.out.println("当前打开页面的标题是:" + dr.getTitle());
dr.quit();
}

}














以上是关于java+selenium3学习之一启动firefox浏览器的主要内容,如果未能解决你的问题,请参考以下文章

Selenium2学习-042-Selenium3启动Firefox Version 48.x浏览器(ff 原生 geckodriver 诞生)

python+selenium3+firefox中使用ActionChains双击等鼠标事件操作报错,但是其它谷歌、ie等浏览器均正常。

selenium3.0 远程模式

启动火狐和谷歌在Selenium3.0上的启动

无法使用 unittest 使用 python 运行 selenium

Python3+Selenium3自动化测试学习之路