Generic actions
focus
Method allowing to focus on a specific element of a page.
Parameter | Type | Description |
---|---|---|
selector | selectorType | Selector of the the targeted element to focus. |
Basic Usage
await I.focus("mySelector");
blur
Method allowing to unfocus on a specific element of a page.
Parameter | Type | Description |
---|---|---|
selector | selectorType | Selector of the the targeted element to unfocus. |
Basic Usage
await I.blur("mySelector");