File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed
selenium/webdriver/remote Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff 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+-----------------+--------------------------------------------------------------------------------------+
Original file line number Diff line number Diff 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 )})
You can’t perform that action at this time.
0 commit comments