我的代码如下所示
public class ReviewCase
{
private IWebDriver driver;
private StringBuilder verificationErrors;
private string baseURL;
private bool acceptNextAlert = true;
[SetUp]
public void SetupTest()
{
driver = new FirefoxDriver();
baseURL = "http://rcm-bpmt.apmoller.net";
verificationErrors = new StringBuilder();
}
[TearDown]
public void TeardownTest()
{
try
{
driver.Quit();
}
catch (Exception)
{
// Ignore errors if unable to close the browser
}
Assert.AreEqual("", verificationErrors.ToString());
}
现在我想在Internet Explorer中运行相同的代码。请提供代码段。
答案 0 :(得分:2)
只需改变:
driver = new FirefoxDriver();
为:
driver = new InternetExplorerDriver();
然后,您需要确保将IEDriver(用于驱动Selenium中的IE自动化的应用程序)解压缩到项目的主根目录。