@taqwright/taqwright 0.0.25 → 0.0.26
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 +1 -1
- package/dist/capabilities.js +3 -0
- package/dist/inspector/ui.d.ts +1 -1
- package/dist/inspector/ui.js +77 -3
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
</h1>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
8
|
-
<a href="https://github.com/taqelah/taqwright/tags"><img src="https://img.shields.io/badge/version-0.0.
|
|
8
|
+
<a href="https://github.com/taqelah/taqwright/tags"><img src="https://img.shields.io/badge/version-0.0.26-blue" alt="version" /></a>
|
|
9
9
|
</p>
|
|
10
10
|
|
|
11
11
|
E2E mobile UI testing on the Playwright runner, with a flat locator API on top of Appium 3.
|
package/dist/capabilities.js
CHANGED
|
@@ -81,6 +81,9 @@ export function appiumRemoteOptions(use) {
|
|
|
81
81
|
port: use.appium?.port ?? 4723,
|
|
82
82
|
path: use.appium?.path ?? '/',
|
|
83
83
|
logLevel: use.appium?.logLevel ?? 'warn',
|
|
84
|
+
...(use.appium?.connectionTimeout !== undefined
|
|
85
|
+
? { connectionRetryTimeout: use.appium.connectionTimeout }
|
|
86
|
+
: {}),
|
|
84
87
|
capabilities: buildCapabilities(use),
|
|
85
88
|
};
|
|
86
89
|
}
|