我收到错误消息
'driver'是'变量',但用作方法
每当我创建一个动作类实例时。
InternetExplorerDriver ie = new InternetExplorerDriver(path);
Action action = new Action(ie);
答案 0 :(得分:2)
我相信您正在寻找Actions
中的OpenQA.Selenium.Interactions
,而不是来自Action
System
的{{1}},它会在错误消息中看到您想要的方法
Actions actions = new Actions(ie);