We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c21f37 commit 36ba2caCopy full SHA for 36ba2ca
.circleci/config.yml
@@ -366,7 +366,7 @@ commands:
366
367
# Wait for server to start
368
for i in $(seq 1 30); do
369
- if curl -s http://localhost:4724/wd/hub/status | grep -q "ready"; then
+ if curl -s http://localhost:4723/wd/hub/status | grep -q "ready"; then
370
echo "Appium server is ready"
371
break
372
fi
examples/hybrid/appiumTests/setup.ts
@@ -7,7 +7,7 @@ export let client: any;
7
8
const config = {
9
hostname: 'localhost',
10
- port: 4724,
+ port: 4723,
11
path: '/', // Adjust if necessary
12
capabilities: {
13
...capabilities,
0 commit comments