Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Typos fix
  • Loading branch information
isellis authored Apr 3, 2024
1 parent 805f456 commit c1af5ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ adb_device = AdbDevice(device='your_device_identifier')
```

## ADB Commands
All the commands below can be called once a device instance has been initiates. This is exemplified by the `adb_device` variable.
All the commands below can be called once a device instance has been initiated. This is exemplified by the `adb_device` variable.

## getting root privileges
You can gain root privilages using the `root` method:
Expand Down Expand Up @@ -123,7 +123,7 @@ You can open intents on the device using the `open_intent` method. This is usefu
Opens a given url on the device by starting an intent. If a default app is associated with this URL, this will
result in the app being opened.
`:param url:` The URL to open
`:return:` the completed process of adb shell am start -a android.intent.action.VIEW -d '{url}'
`:return:` the completed process of adb shell and start -a android.intent.action.VIEW -d '{url}'
```python
intent_result = adb_device.open_intent(url='http://example.com')
if intent_result.success:
Expand Down

0 comments on commit c1af5ed

Please sign in to comment.