This release continues to deliver the new elements' object model. Now, there are available three property holders (i.e., objects that are visible as properties that in turn hold a number of methods and properties):
the Keyboard property holder:
(read more here the Keyboard property)
the Mouse property holder:
(read more here the Mouse property)
the Control property holder:
(read more here the Control property)
the Keyboard property holder:
$element.Keyboard.TypeText("any text");
the Mouse property holder:
$element.Mouse.LeftButtonClick(); $element.Mouse.LeftButtonDoubleClick(); $element.Mouse.RightButtonClick();
the Control property holder:
$element.Control.InvokeContextMenu(); $element.Control.Click(10, 10);