docs(appium): update JS quickstart example (#18852)

This commit is contained in:
Christian Bromann
2023-07-06 22:32:14 -07:00
committed by GitHub
parent 7cd52db673
commit 5e479eadbe
2 changed files with 2 additions and 2 deletions

View File

@@ -1,5 +1,5 @@
{
"devDependencies": {
"webdriverio": "7.31.1"
"webdriverio": "^8.11.2"
}
}

View File

@@ -9,7 +9,7 @@ const capabilities = {
};
const wdOpts = {
host: process.env.APPIUM_HOST || 'localhost',
hostname: process.env.APPIUM_HOST || 'localhost',
port: parseInt(process.env.APPIUM_PORT, 10) || 4723,
logLevel: 'info',
capabilities,