I’m new to the community and have a question regarding test automation. Is there a simple way to run web and mobile test cases together in a single test suite?
My scenario involves:
Running a web test case to create a job and assign it to another user.
The assigned user logging in via an Android or iOS app to continue the job.
Returning to the web application to confirm the job reports.
Since this is a single workflow, I consider it one test case. Does this tool support such a scenario, and if so, what’s the best approach to implement it?
Katalon studio does not distinguish between web test cases and mobile test cases.
You just write the test cases according to the workflow you described above and add them to the test suite, and they can be executed.
If you have difficulties in implementing the script of the test case as described above, please provide a more detailed description.
As @le.duc.anh said, you can create such test suite combining web and mobile test cases.
Just make sure that test suite run configuration is properly set. You have test cases dependency here so if the first test case (web) fails and retries, it could affect the second one (mobile).
Last but not least, as you are trying to launch on two different platforms (web/mobile) you have to take care about the platform statup, maybe using a Test Suite Collection would help you. Test Suite Collection enable user to change default platform in an easier way.