Skip to content

Commit 526d541

Browse files
authored
Change Parameters to Attributes
1 parent 4bb78f5 commit 526d541

File tree

1 file changed

+3
-3
lines changed
  • py/selenium/webdriver/support

1 file changed

+3
-3
lines changed

py/selenium/webdriver/support/wait.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def __init__(
4848
):
4949
"""Constructor, takes a WebDriver instance and timeout in seconds.
5050
51-
Parameters:
51+
Attributes:
5252
----------
5353
driver
5454
- Instance of WebDriver (Ie, Firefox, Chrome or Remote) or
@@ -95,7 +95,7 @@ def until(self, method: Callable[[D], Union[Literal[False], T]], message: str =
9595
Calls the method provided with the driver as an argument until the
9696
return value does not evaluate to ``False``.
9797
98-
Parameters:
98+
Attributes:
9999
----------
100100
method: callable(WebDriver)
101101
- A callable object that takes a WebDriver instance as an argument.
@@ -147,7 +147,7 @@ def until_not(self, method: Callable[[D], T], message: str = "") -> Union[T, Lit
147147
Calls the method provided with the driver as an argument until the
148148
return value does not evaluate to ``False``.
149149
150-
Parameters:
150+
Attributes:
151151
----------
152152
method: callable(WebDriver)
153153
- A callable object that takes a WebDriver instance as an argument.

0 commit comments

Comments
 (0)