(helper)
| 132 | } |
| 133 | |
| 134 | async function clearMarker(helper) { |
| 135 | if (helper.page) return helper.page.evaluate(unmarkAll, MARKER) |
| 136 | return helper.executeScript(unmarkAll, MARKER) |
| 137 | } |
| 138 | |
| 139 | export async function fillRichEditor(helper, el, value) { |
| 140 | const source = el instanceof WebElement ? el : new WebElement(el, helper) |
no test coverage detected