本文介绍了硒电网枢纽与节点(S)成立。下一步是什么? (图片提供)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用的硒2,我有电网枢纽当前设置。我有一个适当的本地节点。
I am using Selenium 2 and I have the grid hub currently set up. I have a local node in place.
这是我的枢纽的样子。
我要加载多项这些浏览器相同的网页。
I want to load the same webpage on a number of these browsers.
是时候,我开始写的webdriver code?(使用C#在VS?)
Is it time for me to start writing the webdriver code?(using c# on VS?)
推荐答案
我只能为你提供一些Java code,但C#应该是很相似的。
I can only provide you some java code, but C# should be quite similar.
String gridconfig = "your grid url";
DesiredCapabilities capabilities = DesiredCapabilities.firefox();
RemoteWebDriver driver = new RemoteWebDriver(new URL(this.gridconfig), capabilities);
//Do your test stuff with driver
这篇关于硒电网枢纽与节点(S)成立。下一步是什么? (图片提供)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!