Skip to content

Commit ee486d9

Browse files
committed
[py] Fix docs nits
1 parent 509c7f1 commit ee486d9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

py/docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The `selenium` package is used to automate web browser interaction from Python.
1414
+-----------------+--------------------------------------------------------------------------------------+
1515
| **GitHub**: | https://github.com/SeleniumHQ/Selenium |
1616
+-----------------+--------------------------------------------------------------------------------------+
17-
| **PyPI**: | https://pypi.org/project/selenium |
17+
| **PyPI**: | https://pypi.org/project/selenium |
1818
+-----------------+--------------------------------------------------------------------------------------+
1919
| **API Docs**: | https://selenium.dev/selenium/docs/api/py/api.html |
2020
+-----------------+--------------------------------------------------------------------------------------+

py/selenium/webdriver/remote/webdriver.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ def set_script_timeout(self, time_to_wait: float) -> None:
799799
execute_async_script call before throwing an error.
800800
801801
Parameters:
802-
---------
802+
----------
803803
time_to_wait : float
804804
- The amount of time to wait (in seconds)
805805
@@ -814,13 +814,13 @@ def set_page_load_timeout(self, time_to_wait: float) -> None:
814814
throwing an error.
815815
816816
Parameters:
817-
---------
818-
time_to_wait : float
817+
----------
818+
time_to_wait : float
819819
- The amount of time to wait (in seconds)
820820
821-
Example:
822-
--------
823-
>>> driver.set_page_load_timeout(30)
821+
Example:
822+
-------
823+
>>> driver.set_page_load_timeout(30)
824824
"""
825825
try:
826826
self.execute(Command.SET_TIMEOUTS, {"pageLoad": int(float(time_to_wait) * 1000)})

0 commit comments

Comments
 (0)