Web 驱动程序(Selinium 版本)

软件测试 视觉工作室
2022-02-05 21:43:58

如何在VS 2005中添加C#的webdrivers,我也试过了,但是显示"OpenQA" not found错误,是不是版本问题?

1个回答

我建议从http://seleniumhq.org/download/获取最新的 Selenium2(webdriver) 版本

以下是在解决方案中使用 webdriver 所需的 dll

从包中添加这些作为解决方案资源管理器中的参考:

webdriver.dll Castle.Core.dll、Ionic.Zip.dll、Newtonsoft.Json.Net35.dll、Selenium.WebDriverBackedSelenium.dll、ThoughtWorks.Selenium.Core.dll、WebDriver.Support.dll、

然后使用这些 using 语句:

使用 OpenQA.Selenium;使用 OpenQA.Selenium.Firefox;使用 OpenQA.Selenium.IE;使用 OpenQA.Selenium.Chrome;使用 OpenQA.Selenium.Remote;