我正在使用lang:java framework:testNG
我的系统安装了3-4个Mozilla版本,如何打开特定版本的Mozilla实例。假设我安装了3.5、3.6,…版本的Mozilla,并且我想打开3.6版本并执行测试。
只需指定版本的二进制文件的路径即可。
FirefoxBinary binary = new FirefoxBinary(new File("path_to_bin")); FirefoxProfile profile = new FirefoxProfile(); WebDriver driver = new FirefoxDriver(binary, profile);