博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Selenium FF WebDriver 加载firebug 和设置代理
阅读量:6258 次
发布时间:2019-06-22

本文共 4662 字,大约阅读时间需要 15 分钟。

首先这次使用的webDriver for Firefox的

由于项目的原因,需要在测试的时候加载Firebug和使用vpn,加载代理

Firefox 加载代理,可以从FF菜单上看,代理分为好几种

我这里使用的是type 为2 的情况

FirefoxProfile profile = new FirefoxProfile();        profile.setPreference("network.proxy.type", 2);        profile.setPreference("network.proxy.autoconfig_url", "http://proxy.myweb.com:8083"); //自动代理配置WebDriver driver = new FirefoxDriver(profile);

如果type 为1 ,需要这么设置

FirefoxProfile profile = new FirefoxProfile();        profile.setPreference("network.proxy.type", 1);                 profile.setPreference("network.proxy.http", "proxy.domain.example.com");        profile.setPreference("network.proxy.http_port", 8080);        profile.setPreference("network.proxy.ssl", "proxy.domain.example.com");        profile.setPreference("network.proxy.ssl_port", 8080);        profile.setPreference("network.proxy.ftp", "proxy.domain.example.com");        profile.setPreference("network.proxy.ftp_port", 8080);        profile.setPreference("network.proxy.socks", "proxy.domain.example.com");        profile.setPreference("network.proxy.socks_port", 8080);WebDriver driver = new FirefoxDriver(profile);

 

public class sfLogin {    static String company="autoPM2CandU";    static String user="athompson";    static String password="pwd";    public static void main(String[] args) {        // TODO Auto-generated method stub        WindowsUtils.tryToKillByName("firefox.exe");        WindowsUtils.getProgramFilesPath();        WebDriver driver=DriverFactory.getFirefoxDriver();        driver.get("https://qaautocand.successfactors.com/login");        driver.manage().window().maximize();        driver.manage().timeouts().implicitlyWait(60, TimeUnit.SECONDS);        driver.manage().timeouts().pageLoadTimeout(60, TimeUnit.SECONDS);                WebElement comp=driver.findElement(By.xpath("//*[@id='company']"));        Actions actions =new Actions(driver);        actions.sendKeys(Keys.F12).perform();//.keyUp(Keys.F12)        WebElement username=driver.findElement(By.xpath("//*[@id='username']"));        WebElement passwordHints=driver.findElement(By.xpath("//*[@id='passwordHints']"));                passwordHints.click();        WebElement pw=driver.findElement(By.xpath("//*[@id='password']"));                WebElement login=driver.findElement(By.xpath("//*[@id='loginSubmitBtn']"));        comp.sendKeys(company);        username.sendKeys(user);        passwordHints.click();        pw.sendKeys(password);        login.submit();                WebElement home=driver.findElement(By.xpath("//*[@id='8:label']"));                actions.moveToElement(home).click().build().perform();        WebElement performance=driver.findElement(By.xpath("//*[@id='10:2']"));        performance.click();                        WebElement endBox=driver.findElement(By.xpath("//*[@id='tablist']/tbody/tr[2]/td/div/div/div/table/tbody/tr[3]/td[2]/a"));                endBox.click();                WebElement auditTrailButton =driver.findElement(By.xpath("//*[@id='form_list_table']/tbody/tr/td[10]/a[2]/img"));        auditTrailButton.click();                WebElement action =driver.findElement(By.xpath("//*[@id='contentBodyTable']/tbody/tr[2]/td/div[2]/div/div[2]/div/div/div[2]/div/table/tbody/tr/td/table[2]/tbody/tr[2]/td/table/tbody/tr[4]/td/table/tbody/tr[4]/td[9]"));                System.out.println(action.getText());                                            }}
View Code

 

如果需要加载firebug

File file=new File("d:\\firebug-2.0.4-fx.xpi");//设置Firebug路径        FirefoxProfile profile = new FirefoxProfile();         profile.setPreference("network.proxy.type", 1);                profile.setPreference("network.proxy.http", "proxy.domain.example.com");        profile.setPreference("network.proxy.http_port", 8080);        profile.setPreference("network.proxy.ssl", "proxy.domain.example.com");        profile.setPreference("network.proxy.ssl_port", 8080);        profile.setPreference("network.proxy.ftp", "proxy.domain.example.com");        profile.setPreference("network.proxy.ftp_port", 8080);        profile.setPreference("network.proxy.socks", "proxy.domain.example.com");        profile.setPreference("network.proxy.socks_port", 8080);                 try {            profile.addExtension(file);            profile.setPreference("extensions.firebug.currentVersion", "2.0.4");//设置firebug 版本        } catch (IOException e3) {            // TODO Auto-generated catch block            e3.printStackTrace();        }             WebDriver driver = new FirefoxDriver(profile);        return driver;

如果需要在运行时候firebug执行

Actions actions =new Actions(driver);actions.sendKeys(Keys.F12).perform();//使用F12调出firebug

 

扩展,为什么这么设置

你可以使用about:config 在Firefox里边看看

 

转载地址:http://yzxsa.baihongyu.com/

你可能感兴趣的文章
数据之路 Day8 Matplotlib包
查看>>
Ye.云狐J2刷机笔记 | 完美切换内部存储卡和SD卡的改法.vold.fstab
查看>>
【转】WIFI基本知识整理
查看>>
普通GRE 隧道配置
查看>>
Vim编程常用命令
查看>>
【树莓派】RASPBIAN镜像初始化配置
查看>>
在按钮上添加倒计时激活功能(转自手册网)
查看>>
java过滤敏感词汇
查看>>
类似LIS+贪心(ZOJ1025)
查看>>
[C++再学习系列] 虚函数的4条规则
查看>>
Thread.sleep
查看>>
浅析 ThreadLocal
查看>>
Pycharm批量操作代码快捷键
查看>>
oracle备份与恢复
查看>>
LLDB调试器
查看>>
cordova Ionic 和cordova的区别是什么
查看>>
【ZZ】C 语言中的指针和内存泄漏 & 编写高效的C程序与C代码优化
查看>>
linux暂停一个在运行中的进程【转】
查看>>
设计安全的账号系统
查看>>
SP2 PRIME1 - Prime Generator
查看>>