Running ios tests in parallel using IOS simulator on appium

Hi, I want to run ios test cases in parallel using an iOS simulator on appium. I know that the limitations of MAC are limited only by the fact that only one simulator will work, but is there a backdoor record, I can do them in parallel, I don’t want to use the grid for some reason, so there is a way to run iOS tests, parallel iOS.

And if I run two application servers with different ports and addresses at the same time, there will be only one ios simulator, since it will disable the other.

I am using application server 1.6.4 and Xcode 8+.

Any help is greatly appreciated.

+4
source share
3 answers

, :

, appium

WebDriver:

appium -p 4722 --webdriveragent-port 8100

, WebDriver .

!

====== ====== EDIT

, , : https://www.youtube.com/watch?v=0aS_zEYvQY4

+1

. . Mac, .xcodeproj .

0

- , MaC. appirum webdriver:

appium --address [your-appirum-server-ip-address] --port [random-free-port] -bp [other-random-free-port] -cp [other-random-free-port] --full - reset --webdriveragent-port [finally-yet-another-random-free-port]

eg. appium --address 10.8.0.3 --port 4874 -bp 6004 -cp 9004 --full- reset --webdriveragent-port 10004

then set the capabilities of your test script to connect to various ports, and majic will happen.

0
source

Source: https://habr.com/ru/post/1682831/


All Articles