如何获得Selenium Grid maxSession使用?

时间:2018-12-11 21:19:30

标签: selenium-grid

搜索Selenium Grid maxSession的上限和下限后,我找不到我的问题的答案。

我正在使用以下内容:

 {
  "capabilities":
  [
    {
      "browserName": "firefox",
      "marionette": true,
      "maxInstances": 5,
      "seleniumProtocol": "WebDriver"
    },
    {
      "browserName": "chrome",
      "maxInstances": 5,
      "seleniumProtocol": "WebDriver"
    }
  ],
  "proxy": "org.openqa.grid.selenium.proxy.DefaultRemoteProxy",
  "maxSession": 5,
  "port": -1,
  "register": true,
  "registerCycle": 5000,
  "hub": "http://localhost:4444",
  "nodeStatusCheckTimeout": 5000,
  "nodePolling": 5000,
  "role": "node",
  "unregisterIfStillDownAfter": 60000,
  "downPollingLimit": 2,
  "debug": false,
  "servlets" : [],
  "withoutServlets": [],
  "custom": {}
}

当我从Leapwork运行测试时,仅运行一个Firefox和一个Chrome。他们彼此并肩奔跑。但是我希望每个浏览器并排运行5个。

关于为什么maxSessions被忽略的想法?

0 个答案:

没有答案