Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Selenium 2,并且当前设置了网格集线器。我有一个本地节点。
这就是我的集线器的样子。
我想在这些浏览器中加载相同的网页。
我是时候开始编写 webdriver 代码了吗?(在 VS 上使用 c#?)
我只能为您提供一些 java 代码,但 C# 应该非常相似。
String gridconfig = "your grid url"; DesiredCapabilities capabilities = DesiredCapabilities.firefox(); RemoteWebDriver driver = new RemoteWebDriver(new URL(this.gridconfig), capabilities); //Do your test stuff with driver