Skip to content

Commit

Permalink
docs: update docs to use named import and create example.js (#741)
Browse files Browse the repository at this point in the history
* docs: update docs to use named import and create example.js

* remove

* Update packages/playwright/example.js

Co-authored-by: Gabe <41127686+Zidious@users.noreply.github.com>

* Update packages/playwright/example.js

Co-authored-by: Gabe <41127686+Zidious@users.noreply.github.com>

* readme updates

---------

Co-authored-by: Gabe <41127686+Zidious@users.noreply.github.com>
  • Loading branch information
straker and Zidious authored Jun 1, 2023
1 parent 3d06f08 commit 4a55913
Show file tree
Hide file tree
Showing 16 changed files with 124 additions and 104 deletions.
33 changes: 5 additions & 28 deletions packages/playwright/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,9 @@

Install [Node.js](https://docs.npmjs.com/getting-started/installing-node) if you haven't already.

Install Playwright:
Install Playwright: `npm install playwright`

NPM:

```console
npm install playwright
```

Yarn:

```console
yarn add playwright
```

Install `@axe-core/playwright` and its dependencies:

NPM:

```console
npm install @axe-core/playwright
```

Yarn:

```console
yarn add @axe-core/playwright
```
Install @axe-core/playwright: `npm install @axe-core/playwright`

## Usage

Expand All @@ -41,11 +17,11 @@ This module uses a chainable API to assist in injecting, configuring, and analyz
Here is an example of a script that will drive Playwright to a page, perform an analysis, and then log results to the console.

```js
const AxeBuilder = require('@axe-core/playwright').default;
const { AxeBuilder } = require('@axe-core/playwright');
const playwright = require('playwright');

(async () => {
const browser = await playwright.chromium.launch();
const browser = await playwright.chromium.launch({ headless: true });
const context = await browser.newContext();
const page = await context.newPage();
await page.goto('https://dequeuniversity.com/demo/mars/');
Expand All @@ -56,6 +32,7 @@ const playwright = require('playwright');
} catch (e) {
// do something with the error
}

await browser.close();
})();
```
Expand Down
16 changes: 11 additions & 5 deletions packages/playwright/example.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
const AxeBuilder = require('@axe-core/playwright').default;
const { AxeBuilder } = require('@axe-core/playwright');
const playwright = require('playwright');

(async () => {
const browser = await playwright.chromium.launch();
const browser = await playwright.chromium.launch({ headless: true });
const context = await browser.newContext();
const page = await context.newPage();
await page.goto('https://dequeuniversity.com/demo/mars/');
const results = await new AxeBuilder({ page }).analyze();
console.log(results);

try {
const results = await new AxeBuilder({ page }).analyze();
console.log(results);
} catch (e) {
console.error(e);
}

await browser.close();
})();
})();
2 changes: 1 addition & 1 deletion packages/playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"test": "mocha --timeout 60000 -r ts-node/register 'test/**.spec.ts'",
"test:esm": "node test/esmTest.mjs",
"coverage": "nyc npm run test",
"prepare": "npm run build"
"prepare": "npx playwright install && npm run build"
},
"dependencies": {
"axe-core": "^4.7.0"
Expand Down
2 changes: 2 additions & 0 deletions packages/playwright/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,3 +325,5 @@ export default class AxeBuilder {
`;
}
}

export { AxeBuilder }
2 changes: 1 addition & 1 deletion packages/playwright/test/axe-playwright.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import testListen from 'test-listen';
import { assert } from 'chai';
import path from 'path';
import { Server, createServer } from 'http';
import AxeBuilder from '../src';
import { AxeBuilder } from '../src';

describe('@axe-core/playwright', () => {
let server: Server;
Expand Down
15 changes: 8 additions & 7 deletions packages/puppeteer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Previous versions of this program were maintained at [dequelabs/axe-puppeteer](h

Install [Node.js](https://docs.npmjs.com/getting-started/installing-node) if you haven't already.

Install Puppeteer: `npm install puppeteer --no-save`
Install Puppeteer: `npm install puppeteer`

Install axe-puppeteer and its dependencies: `npm install @axe-core/puppeteer`
Install @axe-core/puppeteer: `npm install @axe-core/puppeteer`

## Usage

Expand All @@ -25,14 +25,15 @@ const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.setBypassCSP(true);

await page.goto('https://dequeuniversity.com/demo/mars/');

const results = await new AxePuppeteer(page).analyze();
console.log(results);
try {
const results = await new AxePuppeteer(page).analyze();
console.log(results);
} catch (e) {
// do something with the error
}

await page.close();
await browser.close();
})();
```
Expand Down
17 changes: 17 additions & 0 deletions packages/puppeteer/example.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
const { AxePuppeteer } = require('@axe-core/puppeteer');
const puppeteer = require('puppeteer');

(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://dequeuniversity.com/demo/mars/');

try {
const results = await new AxePuppeteer(page).analyze();
console.log(results);
} catch (e) {
console.error(e);
}

await browser.close();
})();
2 changes: 1 addition & 1 deletion packages/puppeteer/test/axe-puppeteer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Puppeteer, { Browser, Page } from 'puppeteer';
import { createServer, Server } from 'http';
import * as sinon from 'sinon';
import testListen from 'test-listen';
import AxePuppeteer from '../src/index';
import { AxePuppeteer } from '../src/index';
import {
startServer,
puppeteerOpts,
Expand Down
29 changes: 11 additions & 18 deletions packages/webdriverio/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,9 @@ Install [Node.js](https://docs.npmjs.com/getting-started/installing-node) if you

> Download and install any necessary browser drivers on your machine's PATH. [More on WebdriverIO setup](https://v6.webdriver.io/docs/gettingstarted.html#taking-the-first-step).
Install `@axe-core/webdriverio` and its dependencies:
Install WebdriverIO: `npm install webdriverio`

NPM:

```console
npm install @axe-core/webdriverio
```

Yarn:

```console
yarn add @axe-core/webdriverio
```
Install @axe-core/webdriverio: `npm install @axe-core/webdriverio`

## Usage

Expand All @@ -33,26 +23,29 @@ This module uses a chainable API to assist in injecting, configuring, and analyz
Here is an example of a script that will drive WebdriverIO to a page, perform an analysis, and then log results to the console.

```js
const AxeBuilder = require('@axe-core/webdriverio').default;
const { AxeBuilder } = require('@axe-core/webdriverio');
const { remote } = require('webdriverio');

(async () => {
const client = await remote({
logLevel: 'error',
capabilities: {
browserName: 'firefox'
browserName: 'chrome',
'goog:chromeOptions': {
args: ['headless', 'disable-gpu']
}
}
});

await client.url('https://dequeuniversity.com/demo/mars/');

const builder = new AxeBuilder({ client });
try {
const results = await builder.analyze();
const results = await new AxeBuilder({ client }).analyze();
console.log(results);
} catch (e) {
console.error(e);
// do something with the error
}

client.deleteSession();
})();
```

Expand Down
24 changes: 24 additions & 0 deletions packages/webdriverio/example.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
const { AxeBuilder } = require('@axe-core/webdriverio');
const { remote } = require('webdriverio');

(async () => {
const client = await remote({
logLevel: 'error',
capabilities: {
browserName: 'chrome',
'goog:chromeOptions': {
args: ['headless', 'disable-gpu']
}
}
});
await client.url('https://dequeuniversity.com/demo/mars/');

try {
const results = await new AxeBuilder({ client }).analyze();
console.log(results);
} catch (e) {
console.error(e);
}

client.deleteSession();
})();
2 changes: 2 additions & 0 deletions packages/webdriverio/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,3 +351,5 @@ export default class AxeBuilder {
return res;
}
}

export { AxeBuilder }
2 changes: 1 addition & 1 deletion packages/webdriverio/test/axe-webdriverio.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Server, createServer } from 'http';
import net from 'net';
import fs from 'fs';
import delay from 'delay';
import AxeBuilder from '../src';
import { AxeBuilder } from '../src';
import { logOrRethrowError } from '../src/utils';
import type { AxeResults, Result } from 'axe-core';
import child_process from 'child_process';
Expand Down
47 changes: 21 additions & 26 deletions packages/webdriverjs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,9 @@ Install [Node.js](https://docs.npmjs.com/getting-started/installing-node) if you

> Download and install any necessary browser drivers on your machine's PATH. [More on Webdriver setup](https://www.selenium.dev/documentation/en/webdriver/).
Install Selenium Webdriver: `npm install selenium-webdriver --no-save`
Install Selenium Webdriver: `npm install selenium-webdriver`

Install @axe-core/webdriverjs and its dependencies:

NPM:

```console
npm install @axe-core/webdriverjs
```

Yarn:

```console
yarn add @axe-core/webdriverjs
```
Install @axe-core/webdriverjs: `npm install @axe-core/webdriverjs`

## Usage

Expand All @@ -33,19 +21,26 @@ This module uses a chainable API to assist in injecting, configuring, and analyz
Here is an example of a script that will drive WebdriverJS to a page, perform an analysis, and then log results to the console.

```js
const AxeBuilder = require('@axe-core/webdriverjs');
const WebDriver = require('selenium-webdriver');

const driver = new WebDriver.Builder().forBrowser('firefox').build();

driver.get('https://dequeuniversity.com/demo/mars/').then(() => {
new AxeBuilder(driver).analyze((err, results) => {
if (err) {
// Handle error somehow
}
const { AxeBuilder } = require('@axe-core/webdriverjs');
const { Builder } = require('selenium-webdriver');
const chrome = require('selenium-webdriver/chrome');

(async () => {
const driver = Builder()
.forBrowser('chrome')
.setChromeOptions(new chrome.Options().headless())
.build();
await driver.get('https://dequeuniversity.com/demo/mars/');

try {
const results = await new AxeBuilder(driver).analyze();
console.log(results);
});
});
} catch(e) {
// do something with the error
}

await driver.quit();
})();
```

## AxeBuilder(driver: Webdriver.WebDriver[, axeSource: string])
Expand Down
25 changes: 16 additions & 9 deletions packages/webdriverjs/example.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
const AxeBuilder = require('@axe-core/webdriverjs');
const WebDriver = require('selenium-webdriver');
const { AxeBuilder } = require('@axe-core/webdriverjs');
const { Builder } = require('selenium-webdriver');
const chrome = require('selenium-webdriver/chrome');

// eslint-disable-next-line @typescript-eslint/explicit-function-return-type
(async () => {
const driver = new WebDriver.Builder().forBrowser('chrome').build();
await driver.get('https://html5-sandbox.glitch.me/');
const results = await new AxeBuilder(driver, null, {
noSandbox: true
}).analyze();
console.log(results);
const driver = new Builder()
.forBrowser('chrome')
.setChromeOptions(new chrome.Options().headless())
.build();
await driver.get('https://dequeuniversity.com/demo/mars/');

try {
const results = await new AxeBuilder(driver).analyze();
console.log(results);
} catch(e) {
console.error(e);
}

await driver.quit();
})();
8 changes: 2 additions & 6 deletions packages/webdriverjs/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
} from './browser';
import assert from 'assert';

class AxeBuilder {
export default class AxeBuilder {
private driver: WebDriver;
private axeSource: string;
private includes: SerialSelectorList;
Expand Down Expand Up @@ -267,8 +267,4 @@ class AxeBuilder {
}
}

if (typeof module === 'object') {
exports = module.exports = AxeBuilder;
}

export default AxeBuilder;
export { AxeBuilder }
2 changes: 1 addition & 1 deletion packages/webdriverjs/test/axe-webdriverjs.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import path from 'path';
import fs from 'fs';
import { Server, createServer } from 'http';
import { Webdriver, connectToChromeDriver } from './test-utils';
import AxeBuilder from '../src';
import { AxeBuilder } from '../src';
import { axeRunPartial } from '../src/browser';
import child_process from 'child_process';
import { ChildProcessWithoutNullStreams } from 'child_process';
Expand Down

0 comments on commit 4a55913

Please sign in to comment.