for example, I would like to use the Selenium way to hover object:
await driver.actions({async: true}).pause(10000).move({x: parseInt(elelementLocation.x), y: parseInt(elelementLocation.y)}).pause(5000).perform();
It will produce an error like this:
driver.actions(...).pause is not afunction``
Or should I use @types/selenium-webdriver mouseMove?
something like:
await driver.actions().mouseMove(elelementLocation).perform();
for example, I would like to use the Selenium way to hover object:
await driver.actions({async: true}).pause(10000).move({x: parseInt(elelementLocation.x), y: parseInt(elelementLocation.y)}).pause(5000).perform();
It will produce an error like this:driver.actions(...).pause is not a
function``Or should I use @types/selenium-webdriver mouseMove? something like:
await driver.actions().mouseMove(elelementLocation).perform();