📄️ Visit
Visit command opens a URL in browser.
📄️ Select
Select's a single element that is currently in the webpage.
📄️ Assert.Equals
Asserts properties of last selected element or page properties like URL and Title. You can extract attribute values, text content from previously selected element. For HTML select tag(dropdown), the currently selected value is asserted against provided values.
📄️ Wait.Until
Wait's for certain conditions to be met before proceeding to subsequent tests.
📄️ Click
Click's single element that is currently in the webpage.
📄️ Type
Types provided text or keystrokes on the selected input element.
📄️ Function
Function command is used to reuse multiple commands by calling function name in parameter column defined same as in reusables sheet. It is also used to separate commands by sections or parts of user interface.
📄️ IframeStart & IframeEnd
An iframe is also known as the inline frame. It is a tag used in HTML5 to embed an HTML document within a parent HTML document. An iframe tag is defined using `` tags. This command helps to run test cases over iframe.