Need Info about parallel run capability
vikramvi opened this issue · 2 comments
Hi,
Can you please clarify below
-
if your framework support parallel run with help of selenium grid ? If yes how do you achieve it ?
-
I observed it has quite old appium java client version , any reason for including latest one ?
-
Do I need to use junit or testng ?
Thanks & Regards,
Vikram
Hi Vikram,
Thanks for the interest in this framework.
-
Parallel execution:
We do not support parallel execution at the moment, however ti is possible to run multiple Jenkins jobs on the same machine.
For example this can happen simultaneously (unless you are not on Windows host):
Job1 clone tests based on this framework in workspace X and run against some Android emulator.
Job2 clone tests based on this framework in workspace Y and run against some iOS emulator. -
Java Client
Appium Java Client 5.* is still beta and we use latest official. We will migrate to 5.* once it is official. -
Junit or TestNG
Our base test is actuallytestngbase test, so if you inherit our BaseTest you should usetestng.
On theory if you use only APIs and do not inherit our BaseTest you should be able to use Junit.
Regards,
Dimitar
Hi Dimitar,
Thanks for detailed clarifications.
Regards,
Vikram