| 348 | */ |
| 349 | // eslint-disable-next-line arrow-body-style |
| 350 | const isHovered = async domId => { |
| 351 | return await browser.execute(domId => { |
| 352 | const input = document.querySelector(domId).matches(':hover'); |
| 353 | |
| 354 | return Boolean(input); |
| 355 | }, domId); |
| 356 | }; |
| 357 | |
| 358 | /** |
| 359 | * Scroll the mouse wheel by the given deltaX, deltaY amounts |
no outgoing calls
no test coverage detected