webdriverio 8.13.4 → 8.13.12
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.
|
@@ -61,7 +61,7 @@ export declare const CDP_SESSIONS: Record<string, CDPSession>;
|
|
|
61
61
|
})
|
|
62
62
|
|
|
63
63
|
// mock an endpoint with a fixed fixture
|
|
64
|
-
|
|
64
|
+
todoMock.respond([{
|
|
65
65
|
title: 'Injected Todo',
|
|
66
66
|
order: null,
|
|
67
67
|
completed: false,
|
|
@@ -69,7 +69,7 @@ export declare const CDP_SESSIONS: Record<string, CDPSession>;
|
|
|
69
69
|
}])
|
|
70
70
|
|
|
71
71
|
// respond with different status code or header
|
|
72
|
-
|
|
72
|
+
todoMock.respond([{
|
|
73
73
|
title: 'Injected Todo',
|
|
74
74
|
order: null,
|
|
75
75
|
completed: false,
|
|
@@ -60,7 +60,7 @@ export const CDP_SESSIONS = {};
|
|
|
60
60
|
})
|
|
61
61
|
|
|
62
62
|
// mock an endpoint with a fixed fixture
|
|
63
|
-
|
|
63
|
+
todoMock.respond([{
|
|
64
64
|
title: 'Injected Todo',
|
|
65
65
|
order: null,
|
|
66
66
|
completed: false,
|
|
@@ -68,7 +68,7 @@ export const CDP_SESSIONS = {};
|
|
|
68
68
|
}])
|
|
69
69
|
|
|
70
70
|
// respond with different status code or header
|
|
71
|
-
|
|
71
|
+
todoMock.respond([{
|
|
72
72
|
title: 'Injected Todo',
|
|
73
73
|
order: null,
|
|
74
74
|
completed: false,
|
package/build/types.d.ts
CHANGED
|
@@ -305,7 +305,7 @@ interface KeyActionEntity {
|
|
|
305
305
|
}
|
|
306
306
|
export interface Action {
|
|
307
307
|
id: string;
|
|
308
|
-
actions: (NoneActionEntity
|
|
308
|
+
actions: (NoneActionEntity | PointerActionEntity | KeyActionEntity)[];
|
|
309
309
|
type?: 'pointer' | 'key';
|
|
310
310
|
parameters?: {
|
|
311
311
|
pointerType: 'mouse' | 'pen' | 'touch';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "webdriverio",
|
|
3
3
|
"description": "Next-gen browser and mobile automation test framework for Node.js",
|
|
4
|
-
"version": "8.13.
|
|
4
|
+
"version": "8.13.12",
|
|
5
5
|
"homepage": "https://webdriver.io",
|
|
6
6
|
"author": "Christian Bromann <mail@bromann.dev>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -93,5 +93,5 @@
|
|
|
93
93
|
"serialize-error": "^8.0.0",
|
|
94
94
|
"webdriver": "8.13.1"
|
|
95
95
|
},
|
|
96
|
-
"gitHead": "
|
|
96
|
+
"gitHead": "bd86d6975458ad8bba3fd87f2af505e1537204db"
|
|
97
97
|
}
|