-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1454 from IBMa/update-puppeteer-19
chore(node): Update to latest Puppeteer (20.2.0)
- Loading branch information
Showing
69 changed files
with
7,729 additions
and
6,581 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ results | |
package-lock.json | ||
src/**/*.js | ||
src/**/*.map | ||
src/**/*.d.ts | ||
src/**/*.d.ts | ||
!src/bin/achecker.js |
14 changes: 7 additions & 7 deletions
14
accessibility-checker/boilerplates/cucumber-selenium/features/Demo.feature
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Feature: Cucumber Demo | ||
Demonstrate a basic usage of AAT | ||
|
||
Scenario: Check pages and fail when issues found | ||
Given I am at URL "http://www.altoromutual.com/" | ||
Then Page is accessible with label "DEMO1" | ||
When I click on ID "CatLink1" | ||
Then Page is accessible with label "DEMO1_Personal" | ||
# Scenario: Check pages and fail when issues found | ||
# Given I am at URL "https://altoromutual.12mc9fdq8fib.us-south.codeengine.appdomain.cloud/#" | ||
# Then Page is accessible with label "DEMO1" | ||
# When I click on ID "feedbackButton" | ||
# Then Page is accessible with label "DEMO1_Personal" | ||
|
||
Scenario: Check pages, but just record results when issues found | ||
Given I am at URL "http://www.altoromutual.com/" | ||
Given I am at URL "https://altoromutual.12mc9fdq8fib.us-south.codeengine.appdomain.cloud/#" | ||
Then Scan page for accessibility with label "DEMO2" | ||
When I click on ID "CatLink1" | ||
When I click on ID "feedbackButton" | ||
Then Scan page for accessibility with label "DEMO2_Personal" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,25 +8,24 @@ | |
"lint": "eslint src", | ||
"test": "mocha -R dot test/mocha/**/*.test.js test/a11y-rule-test-able/*.test.js", | ||
"build": "npm run build:report && npm run build:ts && cd ../accessibility-checker-engine && npm install && npm run build && npm run build-debug && npm run build-node && npm run build-node-debug", | ||
"build:ts": "npx tsc", | ||
"build:ts": "npx tsc -p tsconfig.json && npx tsc -p tsconfig-cjs.json", | ||
"build:report": "(cd ../report-react && npm run build && cd ../accessibility-checker && shx cp ../report-react/build/genReport.tsx ./src-ts/lib/reporters/genReport.ts)", | ||
"package:zip": "shx rm -rf package && gulp --gulpfile gulp/gulpfile.js && shx chmod u+x package/bin/*.js && cd package && npm pack", | ||
"package:npm": "shx rm -rf package && gulp --gulpfile gulp/gulpfile.js && shx chmod u+x package/bin/*.js" | ||
"package:zip": "shx rm -rf package && gulp --gulpfile gulp/gulpfile.mjs && shx chmod u+x package/bin/*.js && cd package && npm pack", | ||
"package:npm": "shx rm -rf package && gulp --gulpfile gulp/gulpfile.mjs && shx chmod u+x package/bin/*.js" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]/IBMa/equal-access/accessibility-checker" | ||
}, | ||
"engines": { | ||
"node": ">=10" | ||
"node": ">=16" | ||
}, | ||
"dependencies": { | ||
"axios": "^0.27.2", | ||
"chromedriver": "*", | ||
"deep-diff": "^1.0.2", | ||
"exceljs": "^4.3.0", | ||
"js-yaml": "^4.1.0", | ||
"puppeteer": "^13.0.0", | ||
"puppeteer": "^20.2.1", | ||
"string-hash": "^1.1.3", | ||
"uuid": "^8.3.2" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.