You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In clickAndHoverHelper.js the line await page.click(clickSelectorIndex); only clicks the first element found. It should click all elements found with the given selector.
Suggested fix: for (var element of document.querySelectorAll(clickSelectorIndex)) { element.click(); }
This might also be the case for page.hover() and page.type() (keypress)
The text was updated successfully, but these errors were encountered:
In
clickAndHoverHelper.js
the lineawait page.click(clickSelectorIndex);
only clicks the first element found. It should click all elements found with the given selector.Suggested fix:
for (var element of document.querySelectorAll(clickSelectorIndex)) { element.click(); }
This might also be the case for
page.hover()
andpage.type()
(keypress)The text was updated successfully, but these errors were encountered: