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