Reputation: 960
I am trying to find out how much can Appium support for automation.
Upvotes: 0
Views: 171
Reputation: 1370
Yes, if your app architecture is same for both iOS and android, then you can use locators like name, class name or ID which works on both platforms. Appium doesn't support desktop, only mobile.
No, but there are many cloud integrations are available in the market like Sauce labs where they use emulator on their cloud. But if you want to use real devices, you can use services like "Test Object" which provided good integration with appium.
Yes, it does support both iOS and android but there are some limitations for both the platforms which you would explore when you actually start using it based on your requirements.
Upvotes: 0
Reputation: 1846
Yes. If by that you mean can you write a test suite that will work for both mobile devices and browsers.
Appium's library adds AppiumDriver
and two implementations of this: AndroidDriver
and IOSDriver
Appium Driver
is an implementation of Selenium's WebDriver
which can be used to write test suites for browsers.
I have written test suites (in java) that work both on browsers and devices using Appium.
No, its just a framework. You can run it on simulated devices, or real ones (either over USB or wifi).
Yes, Appium actually has more features for native apps (swipes etc.).
Hope this helps, Liam
Upvotes: 0
Reputation: 1790
Upvotes: 1