I am getting an error message
'driver' is a 'variable' but is used like a method
whenever I am creating an action class instance.
InternetExplorerDriver ie = new InternetExplorerDriver(path);
Action action = new Action(ie);
I am getting an error message
'driver' is a 'variable' but is used like a method
whenever I am creating an action class instance.
InternetExplorerDriver ie = new InternetExplorerDriver(path);
Action action = new Action(ie);
I believe you are looking for
Actions
fromOpenQA.Selenium.Interactions
, notAction
fromSystem
, which expect a method as you can see in the error message