File tree 2 files changed +6
-8
lines changed
examples/hybrid/appiumTests
2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -387,9 +387,9 @@ commands:
387
387
adb shell ls -l /data/local/tmp/certs/$HASH.0
388
388
389
389
# Configure proxy settings
390
- adb shell settings put global http_proxy "localhost:8080 "
390
+ adb shell settings put global http_proxy "localhost:8082 "
391
391
adb shell settings put global global_http_proxy_host "localhost"
392
- adb shell settings put global global_http_proxy_port 8080
392
+ adb shell settings put global global_http_proxy_port 8082
393
393
394
394
# Verify proxy settings
395
395
echo "Verifying proxy settings..."
@@ -401,7 +401,7 @@ commands:
401
401
name : Start MITM Proxy with Verbose Logging
402
402
background : true
403
403
command : |
404
- mitmdump -p 8080 --set block_global=false --verbose &
404
+ mitmdump -p 8082 --set block_global=false --verbose &
405
405
sleep 5
406
406
407
407
# Verify proxy is running
@@ -417,8 +417,6 @@ commands:
417
417
- run :
418
418
name : Install iOS Simulator
419
419
command : |
420
- xcversion simulators --install='iOS 15.5'
421
-
422
420
# Create simulator
423
421
UDID=$(xcrun simctl create "iPhone 11 Pro Max" com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max com.apple.CoreSimulator.SimRuntime.iOS-15-5)
424
422
@@ -864,7 +862,7 @@ jobs:
864
862
name : Start MITM Proxy
865
863
background : true
866
864
command : |
867
- mitmdump -p 8080 --set block_global=false &
865
+ mitmdump -p 8082 --set block_global=false &
868
866
sleep 5
869
867
870
868
# Run tests
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ const android = {
13
13
'appium:automationName' : 'UiAutomator2' ,
14
14
'appium:proxy' : {
15
15
proxyType : 'manual' ,
16
- httpProxy : 'localhost:8080 ' ,
17
- sslProxy : 'localhost:8080 ' ,
16
+ httpProxy : 'localhost:8082 ' ,
17
+ sslProxy : 'localhost:8082 ' ,
18
18
} ,
19
19
} ;
20
20
You can’t perform that action at this time.
0 commit comments