Running Android and IOS app using Appium
Note:- To Run Android and IOS both test, You will have to install Android SDK (We use for Android apps) and XCode (We use for IOS apps). To install and work with XCode you should have MAC OS. You can not install XCode on windows. 1. Configure your Maven POM.XML file to bring all required dependencies to your project. Add Properties to pick the testng.xml file <properties> <property> <project.build.sourceEncodeing>UTF-8</project.build.sourceEncodeing> <suiteXmlFile>testng.xml</suiteXmlFile> </property> </properties> Add Dependencies <dependencies> <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java --> <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> ...