测试夹具安装程序在程序中失败
本文关键字:程序 失败 测试 安装 夹具 | 更新日期: 2023-09-27 17:56:08
我正在使用C# Selenium编写自动化。我写了这段代码,测试一直失败。你认为问题是什么?Chrome 打开,但它不会谷歌
namespace ConsoleApplication4Sel
{
class Program
{
IWebDriver driver = new ChromeDriver();
static void Main(string[] args)
{
}
[SetUp]
public void initialization()
{
driver.Navigate().GoToUrl("http://www.google.com");
}
[Test]
public void ExcuteTest()
{
IWebElement element = driver.FindElement(By.Name("q"));
//perform ops
element.SendKeys("Execute authomation");
}
[TearDown]
public void CleanUp()
{
driver.Close();
}
}
}
请发布您收到的错误。但无论如何,您都忘记将路径链接到驱动程序,这意味着:
IWebDriver driver = new ChromeDriver(@"YOUR_PATH");
把你的路径放在那里,例如"D:''Download''chromedriver"。