hi Team,
I am able to run the test suite on multiple connected devices.
But its generating only one report for only one device.
How can I get the reports for other devices run parallely.
Please help.
Thanks,
Sameena
Multiple Reports for test suite run on Multiple devices
Re: Multiple Reports for test suite run on Multiple devices
Hello Sameena,
You would need to define a global parameter for each of your device and start the test via command line.
If you start your test in this way, you would get a report for each mobile device.
Please take a look at Run Tests in parallel in our User Guide for further information.
Regards,
Markus (T)
You would need to define a global parameter for each of your device and start the test via command line.
If you start your test in this way, you would get a report for each mobile device.
Code: Select all
start MobileTest.exe /pa:globalMobileDevice="Galaxy Nexus"
start MobileTest.exe /pa:globalMobileDevice="GT-P7500"
Regards,
Markus (T)
Re: Multiple Reports for test suite run on Multiple devices
Hi ,
We tried with the below code from command line, but no luck.
start SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QE1083F00109"
start SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QQ2213G00128"
Test case is running on both the devices.
But only single report is getting generated for only one of the device and not for the both.
Kindly help
-Sameena
We tried with the below code from command line, but no luck.
start SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QE1083F00109"
start SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QQ2213G00128"
Test case is running on both the devices.
But only single report is getting generated for only one of the device and not for the both.
Kindly help
-Sameena
Re: Multiple Reports for test suite run on Multiple devices
Could you post your suite so we can see the issue better?
Shortcuts usually aren't...
-
- Posts: 20
- Joined: Wed Jan 08, 2014 5:15 pm
Re: Multiple Reports for test suite run on Multiple devices
Hello,
I have the same problem. I managed to run the tests on multiple devices, but I'm not able to get the report for each device. The report is overwritten when a test suite is finished on a device. Do you have any ideas?
Thank you,
Darius
I have the same problem. I managed to run the tests on multiple devices, but I'm not able to get the report for each device. The report is overwritten when a test suite is finished on a device. Do you have any ideas?
Thank you,
Darius
- Support Team
- Site Admin
- Posts: 12167
- Joined: Fri Jul 07, 2006 4:30 pm
- Location: Graz, Austria
Re: Multiple Reports for test suite run on Multiple devices
Hi Darius,
when you start your test suites via command line on multiple devices e.g.
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QE1083F00109"
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QQ2213G00128"
the reports will be overwritten because they have the same name.
In order to prevent that add the flag /rf:FileName to the command line
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QE1083F00109" /rf:QE1083F00109
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QQ2213G00128" /rf:QQ2213G00128
You will find more information about Command Line arguments at
http://www.ranorex.com/support/user-gui ... html#c4827
Kind regards,
Markus (S)
when you start your test suites via command line on multiple devices e.g.
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QE1083F00109"
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QQ2213G00128"
the reports will be overwritten because they have the same name.
In order to prevent that add the flag /rf:FileName to the command line
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QE1083F00109" /rf:QE1083F00109
SampleDeviceInfoTwik.exe /pa:GlobalVarDevName="QQ2213G00128" /rf:QQ2213G00128
You will find more information about Command Line arguments at
http://www.ranorex.com/support/user-gui ... html#c4827
Kind regards,
Markus (S)
-
- Posts: 20
- Joined: Wed Jan 08, 2014 5:15 pm
Re: Multiple Reports for test suite run on Multiple devices
That worked,
Thank you Markus!
Thank you Markus!