Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

Mouse gestures

Cezary Piątek edited this page Mar 18, 2017 · 3 revisions

Mouse gestures

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);