1. Appium testing (function testing, user acceptance testing, black box testing)-Rating: 8
Appium testing is equivalent to black box testing. Only test the UI logic correctness. Therefore, the Appium testing framework provides limited methods. Obtain an AppiumDriver object. This object only has a lot of findElements() To obtain the UI element. The UI element is a WebElement. This class provides the primary method for obtaining information, such as name, class, tagName, location, text, isSlected, and isTouched. Another click Event generates the function click (). Unfortunately, there is no longClick () event. Only these two useful objects can be operated in the entire test framework. As a whole, this test framework only tests the correctness of the UI logic and cannot be upgraded to the test business logic process. There is no way to detect.
Pros: