Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa authored Oct 18, 2023
1 parent 5225244 commit e65758d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,18 +60,19 @@ For example, some changes in the Selenium binding could break the Appium client.


### Quick migration guide from v2 to v3
- `options` keyword argument for `webdriver.Remote` such as `XCUITestOptions` instead of `desired_capabilities`
- `options` keyword argument in the `webdriver.Remote` constructor such as `XCUITestOptions` instead of `desired_capabilities`
- Available options are https://github.com/appium/python-client/tree/master/appium/options
- Not "new" change, but the `desired_capabilities` has been removed since v3.
- Please check the [Usage](#usage) below as an exampple.
- Not a "new" change, but the `desired_capabilities` has been removed since v3.
- Replacement
- `start_activity` method: Please use [`mobile: startActivity`](https://github.com/appium/appium-uiautomator2-driver?tab=readme-ov-file#mobile-startactivity)
- `launch_app`, `close_app` and `reset` methods: Please refer to https://github.com/appium/appium/issues/15807
- `available_ime_engines`, `is_ime_active`, `activate_ime_engine`, `deactivate_ime_engine` and `active_ime_engine` methods: Please use [`mobile: shell`](https://github.com/appium/appium-uiautomator2-driver?tab=readme-ov-file#mobile-shell)
- `set_value` and `set_text` methods: Please use `element.send_keys` or `send_keys` by W3C Actions
- Removal
- `end_test_coverage` method is no longer available
- `session` properly is no longer available
- `all_sessions` properly is no longer available
- `session` property is no longer available
- `all_sessions` property is no longer available

### Quick migration guide from v1 to v2
- Enhancement
Expand Down

0 comments on commit e65758d

Please sign in to comment.