Selenium Grid 的使用
简介
Selenium Grid 是 selenium 的三大组件之一,允许用户同时在不同的机器和系统上测试不同的浏览器,可以分布式的来执行我们的自动化测试,也可以测试不同浏览器的兼容性。
Selenium Grid 的组成:
- hub节点(控制器)
- 中心节点,控制节点。
- 管理各个 node 节点的注册信息和状态。
- 接受并转发客户端(测试脚本)请求到合适的 node 节点。
- node 节点(执行器)
- 子节点,代理点。
- 负责注册配置信息到 hub 节点(平台,浏览器,浏览器版本)
- 负责接收来自 hub 节点转发的请求以执行具体用例。
- 也可单独作为远程节点执行测试用例。
环境准备
- 在需要执行脚本的机器上安装 jdk 和配置环境变量。
- 然后下载 selenium-server-standalone-x.x.x.jar, 版本对应自己使用selenium 的版本。
Selenium Grid 运行
1.启动 hub 节点
java -jar selenium-server-standalone-3.12.0.jar -role hub -port 18888 -maxSession 10
参数解释:
- java -jar selenium-server-standalone-3.12.0.jar 运⾏jar包
- -role hub 以 hub 的⻆⾊运⾏
- -port 8888 指定hub运⾏的端⼝(默认为4444)
- -maxSession 10 最⼤的处理会话
启动成功:
2.启动 node 节点
启动 chrome 浏览器:
java -Dwebdriver.chrome.driver="chromedriver.exe" -jar selenium-server-standalone-3.12.0.jar
-role node -hub " http://192.168.1.104:18888/grid/register/" -port 18881 -browser
"browserName=chrome,maxInstances=2,version=75,platform=WINDOWS"
参数解释:
- -Dwebdriver.chrome.driver="chromedriver.exe" 指定 chromeDriver 驱动所在的路径(本地)
- -jar selenium-server-standalone-3.12.0.jar 执行jar包
- -role node 以 node 角色执行。
- -hub " http://192.168.1.104:18888/grid/register/" 将node 节点信息,注册到 对应的 hub 节点上。
- -port 18881 node节点使用的端口。
- -browser "browserName=chrome,maxInstances=2,version=75,platform=WINDOWS"
- browserName=chrome 运行的浏览器。
- maxInstances=2 最多支持两个浏览器示例。
- version=75 浏览器版本号。
- platform=WINDOWS 运行的平台
启动成功:
3.查看 hub 运行状态
通过地址:http://localhost:18888/grid/console
从控制台看到已经注册了一个 node 节点,使用的是 chrome 浏览器。
4.执行脚本
Selenium Grid 运行环境启动之后,我们通过对应的脚本来进行使用。
package com.ggf.webauto;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.remote.BrowserType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
import java.net.URL;
/**
* @Description:
* @Author: ggf
* @Date: 2020/04/06
*/
public class RemoteDemo {
public static void main(String[] args) throws Exception {
// 期望能力对象
DesiredCapabilities capabilities = new DesiredCapabilities();
//配置测试的浏览器,使用chrome浏览器
capabilities.setBrowserName(BrowserType.CHROME);
// hub节点
String url = "http://192.168.1.104:18888/wd/hub";
//和hub建立通讯,把相应配置传给hub,hub会根据配置选择注册的node节点,打开相应的浏览器进行测试
WebDriver driver = new RemoteWebDriver(new URL(url), capabilities);
driver.get("http://www.baidu.com");
driver.findElement(By.id("kw")).sendKeys("selenium");
Thread.sleep(2000);
driver.quit();
}
}
运行脚本之后,Selenium Grid 的 hub节点就会调用对应的 node 节点来执行我们脚本中的内容。
5. Selenium Grid 启动优化
为了方便我们快速的启动 Selenium Grid , 我们可以将启动 hub 节点和 node 节点的命令写成一个 .bat 文件(windows系统) 或 shell 脚本(Linux系统)
以下是window系统的示例:
- 将 bat文件和浏览器驱动以及selenium-server的jar包放在同一个路径下:
- hub.bat
java -jar selenium-server-standalone-3.12.0.jar -role hub -port 18888 -maxSession 10
- node.bat
set command=java
set chromeDriver=-Dwebdriver.chrome.driver="chromedriver.exe"
set jarParams=-jar selenium-server-standalone-3.12.0.jar
set type=-role node
set hub=-hub "http://192.168.1.104:18888/grid/register"
set port=-port 18881
set chrome=-browser "browserName=chrome,maxInstances=2,version=75,platform=WINDOWS"
%command% %chromeDriver% %jarParams% %type% %hub% %port% %chrome%
Selenium Grid + TestNG多线程执行
Selenium Grid能够分布式在不同机器上运⾏不同浏览器,但是我们看到的串⾏的效果(也就是⼀个浏览器执⾏结束后,再运⾏另外⼀个浏览器)。要达到并发执⾏的效果,Selenium Grid是做不到的,我们需要通过TestNG单元测试框架所带的并发执⾏机制。并发执⾏能够带来的好处:
- 减少了执⾏时间:并⾏测试也就意味着多个浏览器可以在同⼀时间被同时执⾏,从⽽减少了整体测试所花费的时间
- 允许多个线程并⾏同时执⾏⼀个测试脚本/不同的测试脚本
java运行脚本:
package com.ggf.webauto;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.remote.BrowserType;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.RemoteWebDriver;
import org.testng.annotations.Test;
import java.net.URL;
/**
* @Description:
* @Author: ggf
* @Date: 2020/04/06
*/
public class SeleniumGridDemo {
@Test
public void testBaiduSearch() throws Exception{
// 期望能力对象
DesiredCapabilities capabilities = new DesiredCapabilities();
//配置测试的浏览器,使用chrome浏览器
capabilities.setBrowserName(BrowserType.CHROME);
// hub节点
String url = "http://192.168.1.104:18888/wd/hub";
//和hub建立通讯,把相应配置传给hub,hub会根据配置选择注册的node节点,打开相应的浏览器进行测试
WebDriver driver = new RemoteWebDriver(new URL(url), capabilities);
driver.get("http://www.baidu.com");
driver.findElement(By.id("kw")).sendKeys("selenium");
Thread.sleep(2000);
driver.quit();
}
}
xml文件配置:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Suite" parallel="tests" thread-count="2">
<test name="Test1">
<classes>
<class name="com.ggf.webauto.SeleniumGridDemo" />
</classes>
</test>
<test name="Test2">
<classes>
<class name="com.ggf.webauto.SeleniumGridDemo" />
</classes>
</test>
</suite>
解释:
parallel="tests"
tests级别:不同的test tag下的用例可以在不同的线程下执行。
相同的test tag下的用例只能在同一个线程中去执行。
thread-count=2:代表了最大并发线程数.
以上xml配置表示:启动两个线程同时执行 SeleniumGridDemo 类。
testng多线程更多内容可参考文章: testng使用详解
Selenium Grid 的使用的更多相关文章
- 搭建selenium grid简单配置
1.使用selenium提供的服务端独立jar包 :服务端.客户端都是运行于java7环境. 2.启动hub: hub配置文件如下: Java -jar selenium-server-standal ...
- Robot Framework + Selenium2Library环境下,结合Selenium Grid实施分布式自动化测试
最近一段时间,公司在推行自动化测试流程,本人有幸参与了自定义通用控件的关键字封装和脚本辅助编写.数据驱动管理.测试用例执行管理等一系列工具软件的研发工作,积累了一些经验,在此与大家做一下分享,也算是做 ...
- Selenium Grid 学习笔记
Selenium Grid 学习笔记http://www.docin.com/p-765680298.html
- Selenium Grid 运行报错 Exception thrown in Navigator.Start first time ->Error forwarding the new session Empty pool of VM for setup Capabilities
Selenium Grid 运行报错 : Exception thrown in Navigator.Start first time ->Error forwarding the new se ...
- selenium Grid(一)
selenium grid Quick Start selenium-grid是用于设计帮助我们进行分布式测试的工具,其整个结构是由一个hub节点和若干个代理节点组成.hub用来管理各个代理节点的注册 ...
- selenium Grid
Selenium Grid 的机制是启动一个 hub,然后启动多个 Selenium RC 注册到 hub 上, 当测试请求到 hub 时,hub 会将测试分发给 Selenium RC, Selen ...
- selenium grid java 资料
Grid TestNG: 使用Selenium Grid改进Web应用程序的测试: http://www.ithov.com/server/117464.shtml
- Selenium Grid跨浏览器-兼容性测试
Selenium Grid跨浏览器-兼容性测试 这里有两台机子,打算这样演示: 一台机子启动一个作为主点节的hub 和 一个作为次节点的hub(系统windows 浏览器为ie) ip为:192.16 ...
- selenium grid的使用与配置
一.selenium grid的组成与作用:由一个集线器hub和多个客户机node组成,如果你的程序需要在不用的浏览器,不同的操作系统上测试,而且比较多的case需要多线程远程执行,那么一个比较好的测 ...
- 转:Selenium Grid深入学习
应网友要求写一个用Selenium Grid控制多系统多浏览器并行执行test case的例子. 因为我这里有两台机子,我打算这样演示: 一台机子启动一个作为主点节的hub 和 一个作为次节点的hub ...
随机推荐
- Jsp页面中动态的引入另一个jsp,jsp:include路径是变量的实现
1 问题描述 在页面搭建时,会有这样的需求,希望局部页面动态的引用另一个jsp.这里的"动态"的意思引用的jsp的路径是个变量.举个例子,我们希望局部页面可能是page1.jsp或 ...
- Python爬虫 - UserAgent列表
PC端: PC_USER_AGENT = [ 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)', 'Mozilla/4.0 (compatibl ...
- 整合Kafka+Flink 实例(第二部分 设计思路)
前 言 拖了蛮久了,一直说要接着上一部分写设计思路以及代码,因为自己技术底子薄弱,加上人又懒,所以一直没能继续,今天补上设计思路及部分代码,后面有时间我会再补充一些应用性的功能,的确有些忙,希 ...
- Flutter 拖拽控件Draggable看这一篇就够了
注意:无特殊说明,Flutter版本及Dart版本如下: Flutter版本: 1.12.13+hotfix.5 Dart版本: 2.7.0 Draggable系列组件可以让我们拖动组件. Dragg ...
- 初探Linux
这是一个小小新手根据自己对Linux的理解而写下的笔记,记录的是大体的学习内容.记录的笔记不全面,甚至没有整体的概念,但也希望能够给部分人一些入门的帮助,实机基于CentOS 7. 导语:学习一件新事 ...
- 随着php7的发布我个人觉得有必要进行一下历史回顾和整理
先看下人尽皆知的发展历史: HP 继承自一个老的工程,名叫 PHP/FI.PHP/FI 在 1995 年由 Rasmus Lerdorf 创建,最初只是一套简单的 Perl 脚本,用来跟踪访问他主页的 ...
- swoole模块的编译安装:php编译安装swoole模块的代码
本篇文章给大家带来的内容是关于swoole模块的编译安装:php编译安装swoole模块的代码,有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助. 1.下载swoole 1 wget ht ...
- css 一行自适应等比例布局
一.浮动布局+百分比 .row { width:100%; overflow:hidden; zoom:1; } .item { float: left; width: 20%; } 该样式兼容性较好 ...
- 深入学习用 Go 编写 HTTP 服务器
Go是一门通用的编程语言,想要学习 Go 语言的 Web 开发,就必须知道如何用 Go 启动一个 HTTP 服务器用于接收和响应来自客户端的 HTTP 请求.用 Go实现一个http server非常 ...
- 【MySQL】Docker搭建MySQL8.0
目录 Docker搭建MySQL8.0 目的: 1.安装Docker 2.查看docker镜像 3.拉取mysql官方镜像 4. 查看目前的镜像 5.运行docker mysql镜像 6.查看目前运行 ...