Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wdio Percy Support v8 #11865

Merged
merged 44 commits into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
933fcae
Add support for Percy
amaanbs Dec 7, 2023
a007216
es-lint fixes
amaanbs Dec 7, 2023
c85e2b1
binary download fix
amaanbs Dec 8, 2023
d1cba84
Merge branch 'main' of github.com:amaanbs/webdriverio into wdio_percy…
amaanbs Dec 8, 2023
02a7706
resolve merge conflicts
amaanbs Dec 8, 2023
f165eaf
add error handling
amaanbs Dec 10, 2023
4f6d8ca
best platform for caps as objects
amaanbs Dec 10, 2023
ffca74b
minor fix
amaanbs Dec 11, 2023
f7a9ca1
minor fixes
amaanbs Dec 12, 2023
abd6493
added unit tests
amaanbs Dec 13, 2023
3047eb2
ts-lint fixes
amaanbs Dec 13, 2023
b29658a
PR review fixes
amaanbs Dec 13, 2023
497c10f
add package-lock.json
amaanbs Dec 13, 2023
f6ee31b
minor fixes
amaanbs Dec 14, 2023
f067682
Screenshot stabilization + default mode = auto
amaanbs Dec 19, 2023
dafa563
PR review fixes
amaanbs Dec 19, 2023
a7a9397
Merge branch 'main' of github.com:amaanbs/webdriverio into wdio_percy…
amaanbs Dec 19, 2023
42b9e06
Fix test failure import
amaanbs Dec 19, 2023
b8e8755
update tests
amaanbs Dec 19, 2023
7c7b1ab
PR review fixes
amaanbs Dec 21, 2023
6819cf2
Merge branch 'main' of github.com:amaanbs/webdriverio into wdio_percy…
amaanbs Dec 21, 2023
907de46
Merge branch 'main' of github.com:amaanbs/webdriverio into wdio_percy…
rev-doshi Jan 8, 2024
1315406
Merge branch 'main' of github.com:amaanbs/webdriverio into wdio_percy…
rev-doshi Jan 8, 2024
e8d6b94
review changes
rev-doshi Jan 4, 2024
4ab0126
linting fix
rev-doshi Jan 4, 2024
e9279bb
import fix
rev-doshi Jan 4, 2024
7811083
import fix
rev-doshi Jan 4, 2024
08c222d
test fixes and using # prefix for private fields
rev-doshi Jan 8, 2024
52b38d9
Revert "test fixes and using # prefix for private fields"
rev-doshi Jan 8, 2024
a0b80e5
test fix
rev-doshi Jan 8, 2024
b438b1f
review comments fix
rev-doshi Jan 9, 2024
425e941
percy packages changes
rev-doshi Jan 9, 2024
7b07fa3
Merge pull request #3 from rev-doshi/wdio_percy_support_v8
rev-doshi Jan 9, 2024
5d5d033
conflict resolution
rev-doshi Jan 9, 2024
436e132
package-lock fix
rev-doshi Jan 9, 2024
463e3b4
review changes
rev-doshi Jan 10, 2024
7b4503c
review changes
rev-doshi Jan 10, 2024
68e13ce
review changes
rev-doshi Jan 11, 2024
fdfcf82
Merge branch 'main' of github.com:amaanbs/webdriverio into wdio_percy…
rev-doshi Jan 11, 2024
77bc0fe
minor fix
rev-doshi Jan 11, 2024
250ed1d
review changes
rev-doshi Jan 11, 2024
0f01b16
master merge and UT fix
rev-doshi Jan 12, 2024
a84203b
master merge
rev-doshi Jan 12, 2024
d39f702
minor fix
rev-doshi Jan 12, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
155 changes: 153 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion packages/wdio-browserstack-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,23 @@
"browserstack-local": "^1.5.1",
"chalk": "^5.3.0",
"csv-writer": "^1.6.0",
"follow-redirects": "^1.15.3",
christian-bromann marked this conversation as resolved.
Show resolved Hide resolved
"formdata-node": "5.0.1",
"git-repo-info": "^2.1.1",
"gitconfiglocal": "^2.1.0",
"got": "^12.6.1",
"uuid": "^9.0.0",
"webdriverio": "8.24.12",
"winston-transport": "^4.5.0"
"winston-transport": "^4.5.0",
"yauzl": "^2.10.0",
"@percy/appium-app": "^2.0.1",
"@percy/selenium-webdriver": "^2.0.2"
},
"peerDependencies": {
"@wdio/cli": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@types/follow-redirects": "^1.14.4",
"@types/node": "^20.1.0",
"@wdio/globals": "8.24.12"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
declare namespace WebdriverIO {
interface Browser {
getAccessibilityResultsSummary: () => Promise<{ [key: string]: any; }>,
getAccessibilityResults: () => Promise<Array<{ [key: string]: any; }>>
getAccessibilityResults: () => Promise<Array<{ [key: string]: any; }>>,
percyCaptureMap: any
}

interface MultiRemoteBrowser {
getAccessibilityResultsSummary: () => Promise<{ [key: string]: any; }>,
getAccessibilityResults: () => Promise<Array<{ [key: string]: any; }>>
getAccessibilityResults: () => Promise<Array<{ [key: string]: any; }>>,
percyCaptureMap: any
christian-bromann marked this conversation as resolved.
Show resolved Hide resolved
}
}