Remove an app from the device
Example Usage
Java | driver.removeApp("com.example.AppName" ); |
Python | self.driver.remove_app('com.example.AppName' ); |
Javascript | // webdriver.io example driver.removeApp( 'com.example.AppName' )// wd example await driver.removeAppFromDevice( 'com.example.AppName' ); |
Ruby | # ruby_lib example remove_app( 'com.example.AppName' )# ruby_lib_core example @driver.remove_app( 'com.example.AppName' ) |
C# | driver.RemoveApp("com.example.AppName" ); |
PHP | $driver->removeApp('com.example.AppName' ); |
Description
iOS tests with XCUITest can also use the mobile: removeApp method. See detailed documentation.
Support
Appium Server
详见
Appium Clients
详见
HTTP API Specifications
Endpoint
POST /session/:session_id/appium/device/remove_app
文章来源:https://www.toymoban.com/news/detail-405675.html
URL Parameters
name | description |
---|---|
session_id | ID of the session to route the command to |
JSON Parameters
name | type | description |
---|---|---|
appId | string |
The iOS App ID |
bundleId | string |
iOS bundleID or Android package name |
Response
null文章来源地址https://www.toymoban.com/news/detail-405675.html
到了这里,关于Appium-Remove App(卸载/删除应用程序)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!