码迷,mamicode.com
首页 > 其他好文 > 详细

selenium3 火狐浏览器加载插件方法

时间:2018-10-22 22:18:33      阅读:217      评论:0      收藏:0      [点我收藏+]

标签:user   com   列表   自己   www.   code   class   sele   files   

  1. 在浏览器属性-目标后加入如下字符:“ -no-remote -profilemanager”,保存设置后,运行浏览器会弹出用户配置文件设置窗口,可以看到所有配置的列表,也可自己新建
    1. 1 ProfilesIni pi = new ProfilesIni();
      2 FirefoxProfile profile = pi.getProfile("Default User");  //Default User 为浏览器用户配置名称
      System.setProperty("webdriver.gecko.driver","./geckodriver.exe"); 3 FirefoxOptions options = new FirefoxOptions(); 4 options.setProfile(profile); 5 WebDriver webdriver = new FirefoxDriver(options); 6 webdriver.get("http://www.baidu.com");

       

selenium3 火狐浏览器加载插件方法

标签:user   com   列表   自己   www.   code   class   sele   files   

原文地址:https://www.cnblogs.com/test-researcher/p/9833216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!