Skip to content

Commit 157d531

Browse files
committed
Cleanup and package.json update
1 parent c952efe commit 157d531

File tree

3 files changed

+1
-22
lines changed

3 files changed

+1
-22
lines changed

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@
8989
"cross-spawn": "7.0.5",
9090
"css-to-xpath": "0.1.0",
9191
"csstoxpath": "1.6.0",
92-
"devtools": "8.40.2",
9392
"envinfo": "7.14.0",
9493
"escape-string-regexp": "4.0.0",
9594
"figures": "3.2.0",
@@ -166,7 +165,7 @@
166165
"typedoc-plugin-markdown": "4.2.10",
167166
"typescript": "5.6.3",
168167
"wdio-docker-service": "1.5.0",
169-
"webdriverio": "8.39.1",
168+
"webdriverio": "9.2.12",
170169
"xml2js": "0.6.2",
171170
"xpath": "0.0.34"
172171
},

test/helper/WebDriver.noSeleniumServer_test.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1204,16 +1204,6 @@ describe('WebDriver - No Selenium server started', function () {
12041204
})
12051205
})
12061206

1207-
describe('GeoLocation', () => {
1208-
// deprecated JSON Wire method commands
1209-
it.skip('should set the geoLocation', async () => {
1210-
await wd.setGeoLocation(37.4043, -122.0748)
1211-
const geoLocation = await wd.grabGeoLocation()
1212-
assert.equal(geoLocation.latitude, 37.4043, 'The latitude is not properly set')
1213-
assert.equal(geoLocation.longitude, -122.0748, 'The longitude is not properly set')
1214-
})
1215-
})
1216-
12171207
describe('#grabElementBoundingRect', () => {
12181208
it('should get the element size', async () => {
12191209
await wd.amOnPage('/form/hidden')

test/helper/WebDriver_test.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,16 +1219,6 @@ describe('WebDriver', function () {
12191219
})
12201220
})
12211221

1222-
describe('GeoLocation', () => {
1223-
// deprecated JSON Wire method commands
1224-
it.skip('should set the geoLocation', async () => {
1225-
await wd.setGeoLocation(37.4043, -122.0748)
1226-
const geoLocation = await wd.grabGeoLocation()
1227-
assert.equal(geoLocation.latitude, 37.4043, 'The latitude is not properly set')
1228-
assert.equal(geoLocation.longitude, -122.0748, 'The longitude is not properly set')
1229-
})
1230-
})
1231-
12321222
describe('#grabElementBoundingRect', () => {
12331223
it('should get the element size', async () => {
12341224
await wd.amOnPage('/form/hidden')

0 commit comments

Comments
 (0)