@axe-core/webdriverjs 4.3.3-alpha.227 → 4.3.3-alpha.228
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -174,3 +174,13 @@ const axe = new AxeBuilder(driver).setLegacyMode();
|
|
|
174
174
|
const result = await axe.analyze();
|
|
175
175
|
axe.setLegacyMode(false); // Disables legacy mode
|
|
176
176
|
```
|
|
177
|
+
|
|
178
|
+
### WebdriverJS Example
|
|
179
|
+
|
|
180
|
+
We have created an example [test suite](https://github.com/dequelabs/axe-core-npm/tree/develop/packages/webdriverjs/tests/examples/webdriverjs-example.ts) showcasing the functionality of axe-core WebdriverJS.
|
|
181
|
+
|
|
182
|
+
To run the test:
|
|
183
|
+
|
|
184
|
+
- Navigate to: `/webdriverjs/tests/example`
|
|
185
|
+
- Install node modules: `npm install`
|
|
186
|
+
- Run tests: `npm test`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@axe-core/webdriverjs",
|
|
3
|
-
"version": "4.3.3-alpha.
|
|
3
|
+
"version": "4.3.3-alpha.228+0e566c2",
|
|
4
4
|
"description": "Provides a method to inject and analyze web pages using axe",
|
|
5
5
|
"contributors": [
|
|
6
6
|
{
|
|
@@ -108,5 +108,5 @@
|
|
|
108
108
|
"functions": 85,
|
|
109
109
|
"lines": 85
|
|
110
110
|
},
|
|
111
|
-
"gitHead": "
|
|
111
|
+
"gitHead": "0e566c246a4a3ab0e5b7b129fbf7006bb67aa7b6"
|
|
112
112
|
}
|