无法在selenium webdriver c#1中双击

时间:2017-01-09 12:36:53

标签: c# selenium selenium-webdriver action double-click

我收到错误消息

  

'driver'是'变量',但用作方法

每当我创建一个动作类实例时。

InternetExplorerDriver ie = new InternetExplorerDriver(path);
Action action = new Action(ie);

1 个答案:

答案 0 :(得分:2)

我相信您正在寻找Actions中的OpenQA.Selenium.Interactions,而不是来自Action System的{​​{1}},它会在错误消息中看到您想要的方法

Actions actions = new Actions(ie);