51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1444|回复: 1
打印 上一主题 下一主题

【转帖】WebDriver拾级而上(14) – RemoteWebDriver

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2017-7-14 11:54:18 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

当本机上没有浏览器,需要远程调用浏览器进行自动化测试时,需要用到RemoteWebDirver.
一、使用RemoteWebDriver
CODE:
  1. <font size="4">import java.io.File;
  2. import java.net.URL;

  3. import org.openqa.selenium.OutputType;
  4. import org.openqa.selenium.TakesScreenshot;
  5. import org.openqa.selenium.WebDriver;
  6. import org.openqa.selenium.remote.Augmenter;
  7. import org.openqa.selenium.remote.DesiredCapabilities;
  8. import org.openqa.selenium.remote.RemoteWebDriver;

  9. public class Testing {
  10.     public void myTest()throws Exception {
  11.         WebDriver driver = newRemoteWebDriver(
  12.                                 new URL("http://localhost:4446/wd/hub"),
  13.                                 DesiredCapabilities.firefox());
  14.         driver.get("http://www.google.com");

  15.         // RemoteWebDriverdoes not implement the TakesScreenshot class
  16.         // if the driver doeshave the Capabilities to take a screenshot
  17.         // then Augmenter willadd the TakesScreenshot methods to the instance
  18.         WebDriveraugmentedDriver = new Augmenter().augment(driver);
  19.         File screenshot =((TakesScreenshot)augmentedDriver).getScreenshotAs(OutputType.FILE);
  20.     }
  21. }</font>
复制代码

二、SeleniumServer
在使用RemoteDriver时,必须在远程服务器启动一个SeleniumServer:
CODE:
  1. <font size="4">java -jar selenium-server-standalone-2.20.0.jar -port 4446</font>
复制代码

三、How to setFirefox profile using RemoteWebDriver
CODE:
  1. <font size="4">profile = new FirefoxProfile();
  2. profile.setPreference("general.useragent.override",testData.getUserAgent());
  3. capabilities = DesiredCapabilities.firefox();
  4. capabilities.setCapability("firefox_profile", profile);
  5. driver = new RemoteWebDriver(new URL(“http://localhost:4446/wd/hub”),capabilities);
  6. driverWait = new WebDriverWait(driver,TestConstant.WAIT_ELEMENT_TO_LOAD);
  7. driver.get("http://www.google.com");</font>
复制代码


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?(注-册)加入51Testing

x
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

该用户从未签到

2#
发表于 2017-7-14 15:13:35 | 只看该作者
向楼主致敬!
回复 支持 反对

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-23 04:09 , Processed in 0.063562 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表