- Selenium 教程
- Selenium - 首页
- Selenium - 概述
- Selenium - 组件
- Selenium - 自动化测试
- Selenium - 环境搭建
- Selenium - 远程控制
- Selenium IDE 教程
- Selenium - IDE 简介
- Selenium - 特性
- Selenium - 限制
- Selenium - 安装
- Selenium - 创建测试
- Selenium - 创建脚本
- Selenium - 控制流
- Selenium - 存储变量
- Selenium - 警报和弹出窗口
- Selenium - Selenese 命令
- Selenium - Actions 命令
- Selenium - Accessors 命令
- Selenium - Assertions 命令
- Selenium - Assert/Verify 方法
- Selenium - 定位策略
- Selenium - 脚本调试
- Selenium - 验证点
- Selenium - 模式匹配
- Selenium - JSON 数据文件
- Selenium - 浏览器执行
- Selenium - 用户扩展
- Selenium - 代码导出
- Selenium - 代码输出
- Selenium - JavaScript 函数
- Selenium - 插件
- Selenium WebDriver 教程
- Selenium - 简介
- Selenium WebDriver vs RC
- Selenium - 安装
- Selenium - 第一个测试脚本
- Selenium - 驱动程序会话
- Selenium - 浏览器选项
- Selenium - Chrome 选项
- Selenium - Edge 选项
- Selenium - Firefox 选项
- Selenium - Safari 选项
- Selenium - 双击
- Selenium - 右键单击
- Python 中的 HTML 报告
- 处理编辑框
- Selenium - 单个元素
- Selenium - 多个元素
- Selenium Web 元素
- Selenium - 文件上传
- Selenium - 定位器策略
- Selenium - 相对定位器
- Selenium - 查找器
- Selenium - 查找所有链接
- Selenium - 用户交互
- Selenium - WebElement 命令
- Selenium - 浏览器交互
- Selenium - 浏览器命令
- Selenium - 浏览器导航
- Selenium - 警报和弹出窗口
- Selenium - 处理表单
- Selenium - 窗口和标签页
- Selenium - 处理链接
- Selenium - 输入框
- Selenium - 单选按钮
- Selenium - 复选框
- Selenium - 下拉框
- Selenium - 处理IFrames
- Selenium - 处理Cookie
- Selenium - 日期时间选择器
- Selenium - 动态Web表格
- Selenium - Actions 类
- Selenium - Action 类
- Selenium - 键盘事件
- Selenium - 键上/下
- Selenium - 复制和粘贴
- Selenium - 处理特殊键
- Selenium - 鼠标事件
- Selenium - 拖放
- Selenium - 笔事件
- Selenium - 滚动操作
- Selenium - 等待策略
- Selenium - 显式/隐式等待
- Selenium - 支持特性
- Selenium - 多选
- Selenium - 等待支持
- Selenium - 选择支持
- Selenium - 颜色支持
- Selenium - ThreadGuard
- Selenium - 错误和日志记录
- Selenium - 异常处理
- Selenium - 其他
- Selenium - 处理 Ajax 调用
- Selenium - JSON 数据文件
- Selenium - CSV 数据文件
- Selenium - Excel 数据文件
- Selenium - 跨浏览器测试
- Selenium - 多浏览器测试
- Selenium - 多窗口测试
- Selenium - JavaScript 执行器
- Selenium - 无头执行
- Selenium - 捕获屏幕截图
- Selenium - 捕获视频
- Selenium - 页面对象模型
- Selenium - 页面工厂
- Selenium - 记录和回放
- Selenium - 框架
- Selenium - 浏览上下文
- Selenium - DevTools
- Selenium Grid 教程
- Selenium - 概述
- Selenium - 架构
- Selenium - 组件
- Selenium - 配置
- Selenium - 创建测试脚本
- Selenium - 测试执行
- Selenium - 端点
- Selenium - 自定义节点
- Selenium 报告工具
- Selenium - 报告工具
- Selenium - TestNG
- Selenium - JUnit
- Selenium - Allure
- Selenium & 其他技术
- Selenium - Java 教程
- Selenium - Python 教程
- Selenium - C# 教程
- Selenium - Javascript 教程
- Selenium - Kotlin 教程
- Selenium - Ruby 教程
- Selenium - Maven & Jenkins
- Selenium - 数据库测试
- Selenium - LogExpert 日志记录
- Selenium - Log4j 日志记录
- Selenium - Robot Framework
- Selenium - AutoIT
- Selenium - Flash 测试
- Selenium - Apache Ant
- Selenium - Github 教程
- Selenium - SoapUI
- Selenium - Cucumber
- Selenium - IntelliJ
- Selenium - XPath
Selenium Grid - 创建测试脚本
Selenium Grid 由六个组件组成,分别是路由器 (Router)、分发器 (Distributor)、节点 (Nodes)、会话队列 (Session Queue)、会话映射 (Session Map) 和事件总线 (Event Bus),这使得它能够以多种方式部署。根据需求,我们可以以分布式模式分别启动Selenium Grid 的每个组件,以集线器和节点模式将它们分别作为集线器和节点,或者以独立模式一次性启动所有组件。
Selenium Grid 中的独立模式
在独立模式下,Selenium Grid 的每个组件作为一个单元工作,可以使用单个命令和单个进程触发。这是运行 Selenium Grid 的最便捷方式。服务器通过 **https://127.0.0.1:4444** 连接到 RemoteWebdriver 请求,并自动从系统路径中找到所有驱动程序。在独立模式下触发 Selenium Grid 后,所有测试都应使用 **https://127.0.0.1:4444**。
Selenium Grid 中独立模式的优点
Selenium Grid 中独立模式的优点如下:
创建和调试使用 RemoteWebdriver 本地构建的测试。
在推送代码之前快速执行和单元测试。
可以轻松配置 CI/CD 工具。
Selenium Grid 中的集线器和节点模式
在 Selenium Grid 中,集线器包含路由器、会话映射、会话队列和事件总线组件。服务器会自动通过 **https://127.0.0.1:4444** 连接到 RemoteWebdriver 请求。
节点在启动时从系统路径中找到所有驱动程序。多个节点可以在同一台机器上执行。例如,如果同一台机器上有两个节点 A 和 B,则使用以下命令:
对于节点 A:
java -jar selenium-server-<version>.jar node --port 5555
对于节点 B:
java -jar selenium-server-<version>.jar node --port 6666
集线器和节点可以位于不同的机器上,它们通过 HTTP 和事件总线进行通信。节点使用事件总线向集线器发送注册消息。集线器收到消息后,会使用 HTTP 与节点通信以检查其是否存在。
为了正确地将节点注册到集线器,集线器机器和节点上需要有事件总线端口可用(默认端口:4442 和 4443)。这有助于建立集线器和节点之间的连接。如果集线器使用默认端口,则使用 --hub 标志注册节点,如下面的命令所示。
java -jar selenium-server-<version>.jar node --hub http://<hub-ip>:4444
如果集线器不使用默认端口,则使用 --publish-events 和 --subscribe-events 标志,如下面的命令所示。
java -jar selenium-server-<version>.jar hub --publish-events tcp://<hub-ip>:8886 --subscribe-events tcp://<hub-ip>:8887 --port 8888
在上面的示例中,集线器使用端口 8886、8887 和 8888。注册集线器后,节点使用相同的端口进行成功注册,使用与集线器相同的端口,如下面的命令所示。
java -jar selenium-server-<version>.jar node --publish-events tcp://<hub-ip>:8886 --subscribe-events tcp://<hub-ip>:8887
Selenium Grid 中集线器和节点模式的优点
在 Selenium Grid 中,集线器和节点模式是最常用的模式。Selenium Grid 中集线器和节点模式的优点如下:
集线器和节点模式允许在 Selenium Grid 中集成具有不同平台、浏览器及其版本的各种机器。
集线器和节点模式通过指向一个入口来运行 WebDriver 测试在各种环境中。
测试可以轻松地进行扩展和缩减,而不会影响整个 Grid。
Selenium Grid 中的分布式模式
在分布式模式下,Selenium Grid 的每个组件都应理想地位于不同的机器上,并且需要分别启动它们。必须正确使用每个端口才能在所有组件之间进行正确的交互。
首先,事件总线允许 Grid 组件之间进行通信。事件总线的默认端口是 4442、4443 和 5557。
java -jar selenium-server-<version>.jar event-bus --publish-events tcp://<event-bus-ip>:4442 --subscribe-events tcp://<event-bus-ip>:4443 --port 5557
然后,新的会话队列将新会话添加到队列中,该队列将由分发器获取。新会话队列的默认端口是 5559。
java -jar selenium-server-<version>.jar sessionqueue --port 5559
会话映射将会话 ID 连接到执行会话的节点,并与事件总线进行通信。新会话队列的默认端口是 5556。
java -jar selenium-server-<version>.jar sessions --publish-events tcp://<event-bus-ip>:4442 --subscribe-events tcp://<event-bus-ip>:4443 --port 5556
分发器获取新会话队列以获取对节点的新会话请求,前提是它们的 capabilities 相同。节点以与在集线器和节点模式下注册节点相同的方式注册到分发器。分发器的默认端口是 5553。分发器与新会话队列、会话映射、事件总线和节点进行通信。
java -jar selenium-server-<version>.jar distributor --publish-events tcp://<event-bus-ip>:4442 --subscribe-events tcp://<event-bus-ip>:4443 --sessions http://<sessions-ip>:5556 --sessionqueue http://<new-session-queue-ip>:5559 --port 5553 --bind-bus false
路由器将新的会话请求更改为队列,并将正在运行的会话请求转发到正在运行该会话的节点。路由器的默认端口是 4444。路由器与新会话队列、会话映射和分发器进行通信。
java -jar selenium-server-<version>.jar router --sessions http://<sessions-ip>:5556 --distributor http://<distributor-ip>:5553 --sessionqueue http://<new-session-queue-ip>:5559 --port 4444
节点的默认端口是 5555。
java -jar selenium-server-<version>.jar node --publish-events tcp://<event-bus-ip>:4442 --subscribe-events tcp://<event-bus-ip>:4443
Selenium Grid 分布式模式的优点
当需要在一个大型 Grid 中(只有一个集线器和许多分布在多台机器上的节点)设置大量节点时,使用 Selenium Grid 的分布式模式。在这种情况下,集线器和节点模式不是理想的选择。
创建测试脚本的先决条件
步骤 1 − 在系统中安装 Java(8 以上版本),并使用命令:java -version 检查是否已安装。如果安装成功,将显示已安装的 Java 版本。
步骤 2 − 打开浏览器并输入以下地址,检查 Grid 状态:
对于 UI 版本,输入 https://127.0.0.1:4444。
对于非 UI 版本,输入 https://127.0.0.1:4444/status。
两种情况下,我们都会收到错误提示 - 无法访问此网站。因为 Selenium Grid 尚未启动。
在 Selenium Grid 中创建测试脚本
在独立模式下创建测试脚本的步骤如下:
步骤 1 − 从以下链接下载 Selenium 独立 Jar 包,并将其保存到一个文件夹中:
https://github.com/SeleniumHQ/selenium/releases.
步骤 2 − 在存储 Selenium 独立 Jar 包的文件夹位置,从终端运行以下命令:
java -jar selenium-server-<version>.jar standalone.
步骤 3 − 再次打开浏览器并输入:https://127.0.0.1:4444 检查 Grid 状态。
错误 − “无法访问此网站” 的错误提示将不再出现,我们将看到显示不同浏览器的 Grid 状态。这将证明 Selenium Grid 已在独立模式下启动。
步骤 4 −
Base.java 中的代码实现
package BaseClass; import java.net.MalformedURLException; import java.net.URL; import org.openqa.selenium.WebDriver; import org.openqa.selenium.remote.DesiredCapabilities; import org.openqa.selenium.remote.RemoteWebDriver; public class Base { public WebDriver setBrowser(String browserName) throws MalformedURLException { WebDriver driver = null; DesiredCapabilities dc = new DesiredCapabilities(); if(browserName.equalsIgnoreCase("chrome")) { dc.setBrowserName("chrome"); } else if(browserName.equalsIgnoreCase("edge")) { dc.setBrowserName("MicrosoftEdge"); } // Initiate RemoteWebDriver driver = new RemoteWebDriver(new URL("https://127.0.0.1:4444"),dc); return driver; } }
TestOne.java 中的代码实现
package Grid; import BaseClass.Base; import org.openqa.selenium.WebDriver; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import java.net.MalformedURLException; public class TestOne extends Base { public WebDriver driver = null; @Test public void testOne() { // launch application driver.get("https://tutorialspoint.com/selenium/practice/links.php"); // get page title System.out.println("Page title is: " + driver.getTitle() + " obtained from testOne"); } @BeforeMethod public void setup() throws MalformedURLException { driver = setBrowser("chrome"); } @AfterMethod public void tearDown() { // quitting browser driver.quit(); } }
TestTwo.java 中的代码实现
package Grid; import BaseClass.Base; import org.openqa.selenium.WebDriver; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import java.net.MalformedURLException; public class TestTwo extends Base { public WebDriver driver = null; @Test public void testTwo() { // launch application driver.get("https://tutorialspoint.com/selenium/practice/links.php"); // get page title System.out.println("Page title is: " + driver.getTitle() + " obtained from testTwo"); } @BeforeMethod public void setup() throws MalformedURLException { driver = setBrowser("edge"); } @AfterMethod public void tearDown() { // quitting browser driver.quit(); } }
testng.xml 文件中的配置。
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd"> <suite name = "Grid Test"> <test thread-count = "5" name="Test"> <classes> <class name="Grid.TestOne" /> <class name="Grid.TestTwo"/> </classes> </test> </suite>
步骤 5 − 从 testng.xml 文件运行测试。
它将显示以下输出:
Page title is: Selenium Practice - Links obtained from testOne Page title is: Selenium Practice - Links obtained from testTwo =============================================== Grid Test Total tests run: 2, Passes: 2, Failures: 0, Skips: 0 =============================================== Process finished with exit code 0
在上面的示例中,我们配置了 Selenium Grid 的独立模式。
本教程全面介绍了 Selenium Grid - 创建测试脚本。我们从介绍 Selenium Grid 中的独立模式、Hub 和 Node 以及分布式模式及其优势开始,讲解了创建测试脚本的先决条件以及如何在 Selenium Grid 中创建测试脚本。
这将使您深入了解 Selenium Grid - 创建测试脚本。建议您多练习所学内容,并探索其他与 Selenium 相关的知识,以加深您的理解并拓宽视野。