我想用c#selenium模拟多个版本的Internet Explorer,它甚至可能吗?我怎样才能做到这一点?我做了一些测试用例,我想在IE 8,9,10,11上运行它们。有什么想法吗?
答案 0 :(得分:0)
根据您设置测试的方式,有几种方法可以做到这一点。
我认为最简单的方法是:
public void StartUpIE(string version){
string path = @"..\..\..\Drivers\IE\32\" + version;
//Rest of code to create an instance of IE as you would
}
然后在你的测试中:
[Testmethod]
public void testIE (){
StartUpIE("11");
//Do some testing
StartUpIE("11.1");
}