This repository has been archived by the owner on Sep 1, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
Mouse gestures
Cezary Piątek edited this page Mar 18, 2017
·
3 revisions
Currently there is a support for the following mouse actions:
void ClickOn(string elementId);
void HoverOn(string elementId);
To support interaction which better reflects real user behaviour there are equivalent methods which accepts text within expected element
void ClickOnElementWithText(string text);
void ClickOnElementWithPartialText(string text);
void HoverOnElementWithText(string text);
void HoverOnElementWithPartialText(string text);