webdriverio 8.13.3 → 8.13.10

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.
@@ -114,7 +114,7 @@ import { KeyAction, PointerAction, WheelAction } from '../../utils/actions/index
114
114
  const elem = await $('input')
115
115
  await elem.click() // make element active
116
116
 
117
- await browser.action('key)
117
+ await browser.action('key')
118
118
  .down('f')
119
119
  .down('o')
120
120
  .down('o')
@@ -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
- mock.respond([{
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
- mock.respond([{
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
- mock.respond([{
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
- mock.respond([{
71
+ todoMock.respond([{
72
72
  title: 'Injected Todo',
73
73
  order: null,
74
74
  completed: false,
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.3",
4
+ "version": "8.13.10",
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": "8d1cdd7fed61921baaf71787fb46b6b33061d794"
96
+ "gitHead": "2a05643770eb3167ab366fc4912f723e9640af1d"
97
97
  }