我正在使用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();
}
}
}
答案 0 :(得分:0)
请发布您正在收到的错误。 但无论如何你忘了将路径链接到驱动程序,意思是:
IWebDriver driver = new ChromeDriver(@"YOUR_PATH");
放在你的路上,例如" D:\ Download \ chromedriver"。