0 Appium Framework Posted by Ravi chandrapal on September 24, 2015 at 5:59pm in Mobile App Testing Anyone Please help me about Appium framework. I have written the scripts in different java classes. How to run all the files at a time one by one as Test Suite. You need to be a member of Mobile QA Zone to add comments! Join Mobile QA Zone Email me when people reply – Follow
Replies
TestNG is the best option..... Ravi.. Go for it. I have tried it.
Testng.xml
Ex:
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<
suite
name
=
"Suite1"
verbose
=
"1"
>
<
test
name
=
"Nopackage"
>
<
classes
>
<
class
name
=
"NoPackageTest"
/>
</
classes
>
</
test
>
<
test
name
=
"Regression1"
>
<
classes
>
<
class
name
=
"test.sample.ParameterSample"
/>
<
class
name
=
"test.sample.ParameterTest"
/>
</
classes
>
</
test
>
</
suite
>
Using Maven(poi.xml) you can configure your tests