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
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
I am using protractor test at react js based webapplication. My test is simple, here is part of the code which i am using in my test script
var logo = element(by.id('facebook-logo')); browser.actions().mouseMove(logo).click().perform();
when i execute it i got this result in my terminal
"W/element - more than one element found for locator By(css selector, *[id="facebook-logo"]) - the first result will be used"
test passed but it is not navigating to external url.