Interactions

Interactions are actions or commands that can be done through a control, PageObject, or Control Collection.

this.MyPageObject.Focus();
this.MyPageObject.button3.Click();

QualityMate supports the basic interactions that a user can make, such as:

  • Clicks

  • Send/Press keys

  • Scrolling

  • Drag and Drop

The interfaces have the above interactions and some extra interactions like the IMenu with the ClickTo method to navigate through a menu.

QualityMate waits until each control to be ready; for more information on this feature, please follow this link.

Last updated