setProperty-手工指定浏览器,浏览器驱动安装路径


package com.bwf.autotest.day01;

import org.openqa.selenium.WebDriver;
import org.openqa.selenium.firefox.FirefoxDriver;

public class TestEV {
    public static void main(String[] args) {
        WebDriver driver = new FirefoxDriver();

        //手工指定浏览器的安装路径
//        System.setProperty("webdriver.firefox.bin","D://Program Files//Mozilla Firefox//firefox.exe");
        //手工指定驱动程序路径
//        System.setProperty("Webdriver.gecko.driver","C://Program Files//Java//jdk1.8.0_291//bin//geckodriver.exe");
        //打开一个浏览器
        driver.get("http://www.baidu.com");
    }
}

 

原创文章,作者:端木书台,如若转载,请注明出处:https://blog.ytso.com/271710.html

(0)
上一篇 2022年7月6日
下一篇 2022年7月6日

相关推荐

发表回复

登录后才能评论