dequelabs / axe-webdriverjs

Provides a chainable axe API for Selenium's WebDriverJS and automatically injects into all frames.
Mozilla Public License 2.0
130 stars 46 forks source link

docs: replace dead link to selenium webdriver #153

Closed drc-nloftsgard closed 4 years ago

drc-nloftsgard commented 4 years ago

docs have moved to https://www.selenium.dev/documentation/en/

CLAassistant commented 4 years ago

CLA assistant check
All committers have signed the CLA.

drc-nloftsgard commented 4 years ago

Also it seems that creating/building the driver has changed and should be

var driver = await new Builder()
    .forBrowser('firefox')
    .build();
straker commented 4 years ago

Thanks for the doc update, I really like the new docs. As for the example, it should still be fine as you'd have to decronstruct the WebDriver object to get Builder on it's own, so the example should still work as it is written.

straker commented 4 years ago

Seems circle never got the message about a new pr... Could you push an empty commit to retrigger the build? git commit -m "trigger build" --allow-empty

WilcoFiers commented 4 years ago

@drc-nloftsgard Thank you for the contribution!