selenium webdirver之ruby-grid使用步骤

简介:

网上n多都没有怎么使用的步骤,都是些说明,官网上找了半天也木有,杯具啊,先分享下吧

Hub:

local machine

2 Nodes:

local machine: 10.1.80.103

remote virtual machine : 10.1.80.135

Configuration steps:

1.       1. Dowload the lastest selenium Grid2 (selenium-server-standalone-2.11.0.jar ) from web site: http://code.google.com/p/selenium/downloads/list

2.       2. Put selenium grid2 in a suitable local location(eg: selenium grid home in my machine: C:\xlz\tools\seleniumGrid), and copy it to remote node machine as well.

3.       3. Start the selenium grid2 Hub in selenium grid home command :

>java -jar selenium-server-standalone-2.11.0.jar -role hub

4.       4. Check the hub status in http://localhost:4444/console

St   5. Start the selenium rc in Hub machine under selenium Grid home commands:

>java -jar selenium-server-standalone-2.11.0.jar -role rc -hub http://localhost:4444/grid/register-host localhost -port 5555

>java -jar selenium-server-standalone-2.11.0.jar -role rc -hubhttp://10.1.80.103:4444/grid/register -host 10.1.80.135 -port 5556

5.       6. Start the selenium rc in Remote machine(test Node) command: (don’t forget)

>java -jar selenium-server-standalone-2.11.0.jar -role rc -hubhttp://10.1.80.103:4444/grid/register -host 10.1.80.135 -port 5556

6.       7. Execute test scripts by Ant task under scripts home:

>cd C:\Users\Xlz\workspace\TestProject

>ant –f testbuild.xml

 

Now our testing starting ! All of test result will be collected in Hub. Enjoy it! 










本文转自 小强测试帮 51CTO博客,原文链接:http://blog.51cto.com/xqtesting/808518,如需转载请自行联系原作者
目录
相关文章
|
6月前
|
数据采集 Web App开发 JavaScript
快速参考:用C# Selenium实现浏览器窗口缩放的步骤
在C#结合Selenium的网络爬虫应用中,掌握浏览器窗口缩放、代理IP、cookie与user-agent设置至关重要。本文详述了如何配置代理(如亿牛云加强版),自定义用户代理,启动ChromeDriver,并访问目标网站如抖音。通过执行JavaScript代码实现页面缩放至75%,并添加cookie增强匿名性。此策略有效规避反爬机制,提升数据抓取的准确度与范围。代码示例展示了整个流程,确保爬虫操作的灵活性与高效性。
134 3
|
8月前
|
Web App开发 Java 测试技术
Python Selenium 基本使用(详细步骤)
Python Selenium 基本使用(详细步骤)
171 0
|
Linux 开发工具 git
Docker部署selenium程序-从本地到云服务器-详细步骤
Docker部署selenium程序-从本地到云服务器-详细步骤
423 0
|
Web App开发 Java 测试技术
Python Selenium 基本使用(详细步骤)
Python Selenium 基本使用(详细步骤)
587 0
|
IDE 测试技术 开发工具
|
Web App开发 测试技术 C#

热门文章

最新文章