首页 > TAG信息列表 > selenium-grid

android-选择硒grid2上的特定节点以运行测试

假设我有两个与selenium grid2相连的android模拟器.一个是平板电脑模拟器,一个是移动模拟器.目前,如果我指定要在android上运行测试,则似乎只是随机选择一个. 如果我想专门选择平板电脑而不是网格上的移动模拟器,是否有办法实现? 编辑:这两个模拟器在同一台计算机上运行.解决方法:我

android-使用appium和Selenium网格运行自动化测试仅在一个设备上运行

我正在尝试使用appium和Selenium网格运行一些移动自动化测试.完成所有配置工作并添加网格节点后,如何在两个设备中并行运行测试? 这是我的setUp(): desired_caps = {} desired_caps['platformName'] = 'Android' desired_caps['platformVersion'] = '5.1' desired_caps[

java-CentOS 5.5下SeleniumGrid的init.d脚本

我正在为我们的团队建立持续集成环境.该环境的一部分是在CentOS 5.5下运行的Selenium Grid.我遇到了一个问题,我无法使用系统为SeleniumGrid设置自动启动. 我尝试编写init.d脚本,但是由于缺乏bash脚本编写知识,因此并非成功.谷歌搜索也不成功,但是我找到了针对debian系统here的解决

java-如何在同一台机器上运行多个硒测试套件

我正在将Java / Selenium Webdriver与testng一起使用来运行我的测试自动化,我有许多自动化项目,每个项目都使用一个testing.xml,如何在同一台计算机上同时运行两个或多个套件, 这是我用于创建driverInstance对象的代码: public WebDriver getDriverInstance(

python – ChromeDriver ERR_SSL_PROTOCOL_ERROR尽管–ignore-certificate-errors

我正在尝试使用chlenium和ChromeDriver在本地主机(没有HTTPS)上运行集成测试. Chrome需要https证书,但从this问题我明白我可以使用arg –ignore-certificate-errors来规避这个问题 我还添加了我的功能acceptInsecureCerts,因为这似乎是适当的行动方案(docs) chromedriver的反应仍然

java – 在PATH中找不到firefox二进制文件.确保安装了firefox

在Selenium网格中我试图执行一个简单的程序而且我得到了在PATH中找不到firefox二进制文件虽然我在我的代码中添加了二进制路径. 我的代码和错误如下.请帮忙.提前致谢. 码 package Sample; import java.net.MalformedURLException; import java.net.URL; import org.openqa.seleniu

java – 运行具有200个节点的Selenium Grid 2.如何增加Jetty线程?

我目前正在运行一个注册了50多个节点的Selenium Grid 2. 一段时间后,集线器变得没有响应,并且很难与节点进行来回通信(http请求).我读了here这个: Relly large (>50 node) Hub installations may need to increase the jetty threads by setting -DPOOL_MAX=512 (or larger) on

使用FireFoxProfile与RemoteWebDriver,Selenium Grid2,导致功能异常

我试图以编程方式创建一个临时的firefox配置文件,用于selenium grid2的selenium测试. 这是我目前正在运行的代码. DesiredCapabilities capabilities = new DesiredCapabilities(); capabilities.setBrowserName("firefox"); FirefoxProfile profile = new FirefoxProfile(); prof