-
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fe7916d
commit b20cc58
Showing
20 changed files
with
275 additions
and
288 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
Solutions | ||
========= | ||
|
||
If you get stuck in one of the chapters you can look in here to see how it was suppose to be done. Every solution for each chapter has a different NPM `package.json` so ensure that you install the dependency before you run the example. | ||
If you get stuck in one of the chapters you can look in here to see how it was supposed to be done. Every solution for each chapter has a different NPM `package.json` so ensure that you install the dependency before you run the example. |
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,14 +1,14 @@ | ||
{ | ||
"name": "chapter2", | ||
"version": "1.0.0", | ||
"description": "", | ||
"description": "Chapter 2 of the WebdriverIO workshop: Writing an automation script using Standalone Mode", | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"type": "module", | ||
"scripts": { | ||
"test": "node test.js" | ||
}, | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"webdriverio": "^8.32.4" | ||
} | ||
|
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,14 +1,14 @@ | ||
{ | ||
"name": "chapter3", | ||
"version": "1.0.0", | ||
"description": "", | ||
"description": "Chapter 4 of the WebdriverIO workshop: WDIO Testrunner", | ||
"type": "module", | ||
"scripts": { | ||
"test": "wdio wdio.conf.js" | ||
}, | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "wdio wdio.conf.js" | ||
}, | ||
"devDependencies": { | ||
"@wdio/cli": "^8.32.4", | ||
"@wdio/local-runner": "^8.32.4", | ||
|
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,14 +1,14 @@ | ||
{ | ||
"name": "chapter4", | ||
"version": "1.0.0", | ||
"description": "", | ||
"description": "Chapter 4 of the WebdriverIO workshop: Use of Reporter and Services", | ||
"type": "module", | ||
"scripts": { | ||
"test": "wdio wdio.conf.js" | ||
}, | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "wdio wdio.conf.js" | ||
}, | ||
"devDependencies": { | ||
"@wdio/allure-reporter": "^8.32.4", | ||
"@wdio/cli": "^8.32.4", | ||
|
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 @@ | ||
{ | ||
"name": "chapter5", | ||
"version": "1.0.0", | ||
"description": "", | ||
"description": "Chapter 5 of the WebdriverIO workshop: Performance Testing", | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"type": "module", | ||
"scripts": { | ||
"test": "wdio wdio.conf.js", | ||
"test:sauce": "wdio wdio.sauce.conf.js" | ||
}, | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@wdio/allure-reporter": "^8.32.4", | ||
"@wdio/cli": "^8.32.4", | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "chapter9", | ||
"name": "chapter11", | ||
"version": "1.0.0", | ||
"description": "Chapter 10 of the WebdriverIO workshop: Visual Regression Testing", | ||
"description": "Chapter 11 of the WebdriverIO workshop: Visual Regression Testing", | ||
"main": "index.js", | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
|
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 |
---|---|---|
@@ -1,25 +1,22 @@ | ||
{ | ||
"name": "chapter9", | ||
"name": "chapter12", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "index.js", | ||
"description": "Chapter 12 of the WebdriverIO workshop: TypeScript", | ||
"scripts": { | ||
"test": "wdio wdio.local.conf.ts" | ||
}, | ||
"keywords": [], | ||
"author": "Christian Bromann <[email protected]>", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@wdio/allure-reporter": "^7.20.3", | ||
"@wdio/cli": "^7.20.4", | ||
"@wdio/local-runner": "^7.20.4", | ||
"@wdio/mocha-framework": "^7.20.3", | ||
"@wdio/spec-reporter": "^7.20.3", | ||
"allure-commandline": "^2.17.2", | ||
"chromedriver": "^103.0.0", | ||
"ts-node": "^10.8.1", | ||
"typescript": "^4.7.4", | ||
"wdio-chromedriver-service": "^7.3.2", | ||
"webdriverio": "^7.20.4" | ||
"@wdio/allure-reporter": "^8.34.0", | ||
"@wdio/cli": "^8.35.1", | ||
"@wdio/local-runner": "^8.35.1", | ||
"@wdio/mocha-framework": "^8.35.0", | ||
"@wdio/spec-reporter": "^8.32.4", | ||
"allure-commandline": "^2.27.0", | ||
"ts-node": "^10.9.2", | ||
"typescript": "^5.4.3", | ||
"webdriverio": "^8.35.1" | ||
} | ||
} |
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.