无法在 selenium webdriver c# 1 中双击
Unable to doubleclick in selenium webdriver c# 1
我收到一条错误消息
'driver' is a 'variable' but is used like a method
每当我创建一个动作 class 实例时。
InternetExplorerDriver ie = new InternetExplorerDriver(path);
Action action = new Action(ie);
我相信您正在寻找来自 OpenQA.Selenium.Interactions
的 Actions
,而不是来自 System
的 Action
,它需要一个您可以在错误消息中看到的方法
Actions actions = new Actions(ie);
我收到一条错误消息
'driver' is a 'variable' but is used like a method
每当我创建一个动作 class 实例时。
InternetExplorerDriver ie = new InternetExplorerDriver(path);
Action action = new Action(ie);
我相信您正在寻找来自 OpenQA.Selenium.Interactions
的 Actions
,而不是来自 System
的 Action
,它需要一个您可以在错误消息中看到的方法
Actions actions = new Actions(ie);