我正在尝试使用WebDriver,Nunit和C#在多个浏览器上运行测试。它正在运行,但我在Chrome中收到了恼人的安全警告。为了解决这个问题,我需要使用“.AddArguments(” - test-type“);”重新创建驱动程序。但是如果这个迭代浏览器= Chrome,我只想这样做。这是我的代码。它可以工作,但它首先启动一个不需要的浏览器窗口。有人对此有什么想法吗?
namespace SeleniumTests
{
[TestFixture(typeof(FirefoxDriver))]
[TestFixture(typeof(InternetExplorerDriver))]
[TestFixture(typeof(ChromeDriver))]
public class TestWithMultipleBrowsers<TWebDriver> where TWebDriver : IWebDriver, new()
{
private IWebDriver driver;
[SetUp]
public void CreateDriver()
{
this.driver = new TWebDriver(); //Creates a window that needs to be closed and re-constructed
if(driver is ChromeDriver)
{
driver.Quit(); //This kills the un-needed driver window created above
var chromeOptions = new ChromeOptions();
chromeOptions.AddArguments("--test-type");
driver = new ChromeDriver(chromeOptions);
}
}
答案 0 :(得分:3)
为什么不简单地在基类中创建chromedriver呢?您也可以使用chromoptions
来传递必要的参数。然后使用
[TestFixture(typeof(FirefoxDriver))]
[TestFixture(typeof(InternetExplorerDriver))]
[TestFixture(typeof(ChromeDriver))]
这将为您节省不必要的代码重复和混淆。
我有一个完整的驱动程序实例here
答案 1 :(得分:0)
我认为你在代码中调用了两次chrome。这是一个可能对您有帮助的示例代码。
using NUnit.Framework;
using OpenQA.Selenium;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.IE;
using OpenQA.Selenium.Chrome;
namespace MultipleBrowserTesting
{
[TestFixture(typeof(FirefoxDriver))]
[TestFixture(typeof(ChromeDriver))]
[TestFixture(typeof(InternetExplorerDriver))]
public class BlogTest<TWebDriver> where TWebDriver : IWebDriver, new()
{
private IWebDriver _driver;
[Test]
public void Can_Visit_Google()
{
_driver = new TWebDriver();
// Navigate
_driver.Manage().Window.Maximize();
_driver.Navigate().GoToUrl("http://www.google.com/");
}
[TestFixtureTearDown]
public void FixtureTearDown()
{
if (_driver != null)
_driver.Close();
}
}
}
这是Github项目的链接。 GitHub Link to solution