2

How to run multiple tests on different browsers simultaneously using Selenium WebDriver?

I am working in java, I even tried selenium grid Downloaded: the selenium-server-standalone-2.33.0.jar file

Even after the procedures,

I am not able to execute these commands on the command prompt

  1. java -jar selenium-server-standalone-2.33.0.jar -role hub -port 4444
  2. java -jar selenium-server-standalone-2.33.0.jar -role node -hub ...

Any other alternative ??

4

2 回答 2

1

Grid 不会并行运行测试。您必须并行运行测试才能利用 Grid。Grid 只是提供了一种机制,允许您通过主服务器分配浏览器分配。

您如何配置测试框架取决于您当前使用的框架(例如 TestNG、JUnit)

于 2013-08-21T10:32:00.427 回答
0

您可以使用 selenium+TestNG 组合,就在我完成一个并行运行 firefox 和 chrome 浏览的程序的前一天

于 2013-10-04T11:16:30.433 回答