A project I\'m on is developing a web app at the same time as an ios app (for the same thing) and I\'m hoping to be able to use existing Selenium tests, but we\'re having troubl
You can create one object repository file which contains the locators for both WebApp and iOS app. Then you have to follow the below process
WebDriver
and AppiumDriver
instancesPlease note that, the way WebDriver
and AppiumDriver
identifies the elements will be different. For example, in WebDriver
if an element is identified by using ID
then similarly in AppiumDriver
an element can be identified by using the findElementByAccessibilityId
.
Even though AppiumDriver
uses the same logic which WebDriver
uses, the method names will differ. Please find the link for all the methods used by AppiumDriver
Hope this helps.