Skip to content

Commit b727e1f

Browse files
committed
fix typo and apply comment
1 parent 25b5af0 commit b727e1f

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ For example, some changes in the Selenium binding could break the Appium client.
6060

6161

6262
### Quick migration guide from v4 to v5
63-
- This change affecs only for a user who speficies `keep_alive`, `direct_connection` and `strict_ssl` arguments for `webdriver.Remote`:
64-
- Please use `AppiumClientConfig` as `client_config` arguemnt as below:
63+
- This change affects only for users who specify `keep_alive`, `direct_connection` and `strict_ssl` arguments for `webdriver.Remote`:
64+
- Please use `AppiumClientConfig` as `client_config` argument similar to how it is specified below:
6565
```python
6666
SERVER_URL_BASE = 'http://127.0.0.1:4723'
6767
# before
@@ -86,7 +86,8 @@ For example, some changes in the Selenium binding could break the Appium client.
8686
client_config=client_config
8787
)
8888
```
89-
- Note that you can keep using `webdriver.Remote(url, options=options, client_config=client_config)` format as well. Then, the `remote_server_addr` in `AppiumClientConfig` will prior than the `url` specified via `webdriver.Remote`
89+
- Note that you can keep using `webdriver.Remote(url, options=options, client_config=client_config)` format as well.
90+
In such case the `remote_server_addr` argument of `AppiumClientConfig` constructor would have priority over the `url` argument of `webdriver.Remote` constructor.
9091
- Use `http://127.0.0.1:4723` as the default server url instead of `http://127.0.0.1:4444/wd/hub`
9192

9293
### Quick migration guide from v3 to v4

0 commit comments

Comments
 (0)