Skip to content

Commit

Permalink
Fixing sending keystrokes with native events disabled for IE
Browse files Browse the repository at this point in the history
Because apparently, the developer can't remember how function binding
works in C++ when using a pointer to the object instead of the object
itself. Fixes issue #5584.
  • Loading branch information
jimevans committed Mar 9, 2018
1 parent 8feb200 commit 2fe0d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/iedriver/ActionSimulators/ActionSimulator.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class ActionSimulator {
ActionSimulator(void);
virtual ~ActionSimulator();

bool UseExtraInfo(void) const { return false; }
virtual bool UseExtraInfo(void) const { return false; }

virtual int SimulateActions(BrowserHandle browser_wrapper,
std::vector<INPUT> inputs,
Expand Down

0 comments on commit 2fe0d1a

Please sign in to comment.