我正在尝试selenium-server-standalone-3.6.0
使用 JSON 配置文件以独立角色开始,但我无法找出正确的命令
我正在为集线器和节点使用额外的 servlet,但我想使用单个命令启动服务器
所以不要开始:如果可能的话
java -cp my_proxy.jar:selenium-server-standalone-3.6.0.jar org.openqa.grid.selenium.GridLauncherV3 -role hub -hubConfig configHub.json
,
java -cp my_proxy.jar:selenium-server-standalone-3.6.0.jar org.openqa.grid.selenium.GridLauncherV3 -role node -nodeConfig configNode.json
我想做这样的事情:
java -cp my_proxy.jar:selenium-server-standalone-3.6.0.jar org.openqa.grid.selenium.GridLauncherV3 -role standalone -hubConfig configHub.json -nodeConfig configNode.json
问问题
475 次