InterviewSolution
| 1. |
What types of tests are suitable for Appium? |
|
Answer» There are many scenarios that can be tested when it comes to testing, especially for web applications, depending on the feature coverage you want to assure. Appium comes in helpful when it comes to testing scenarios that users will encounter when using your app. Appium, on the other hand, becomes a restriction if you need to TEST more than UX SIMPLE interactions. Consider features such as KEYBOARDING. When SOPHISTICATED touch/keyboard mixed circumstances are involved, the likelihood of a false failure is significant. Exchanging data is another minor pain with Appium. You'll need to use various strategies when your test needs to exchange data with your app. So KEEP in mind that sending and receiving information isn't always simple. It's not Appium's fault; the WebDriver specification was created to automate processes, not data exchange. |
|