Skip to content

Commit

Permalink
docs: update docstring (appium#986)
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa authored May 4, 2024
1 parent 85e921c commit 67a561d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appium/webdriver/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def test_command(self, argument):
def add_command(self):
return ('post', 'session/$sessionId/path/to/your/custom/url')
driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps,
driver = webdriver.Remote('http://localhost:4723/wd/hub', options=options,
extensions=[YourCustomCommand])
# Then, the driver sends a post request to `session/$sessionId/path/to/your/custom/url`
Expand All @@ -138,7 +138,7 @@ def custom_method_name(self, element_id):
def add_command(self):
return ('GET', 'session/$sessionId/path/to/your/custom/$id/url')
driver = webdriver.Remote('http://localhost:4723/wd/hub', desired_caps,
driver = webdriver.Remote('http://localhost:4723/wd/hub', options=options,
extensions=[YourCustomCommand])
element = driver.find_elemeent(by=AppiumBy.ACCESSIBILITY_ID, value='id')
Expand Down

0 comments on commit 67a561d

Please sign in to comment.