Skip to content

Commit e3360f1

Browse files
committed
Rename New in SeleniumLibrary 5.0 -> 4.3
1 parent e453176 commit e3360f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/SeleniumLibrary/keywords/waiting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def wait_until_location_is_not(self, location, timeout=None, message=None):
8787
The ``message`` argument can be used to override the default error
8888
message.
8989
90-
New in SeleniumLibrary 5.0
90+
New in SeleniumLibrary 4.3
9191
"""
9292
location = str(location)
9393
self._wait_until(lambda: location != self.driver.current_url,
@@ -127,7 +127,7 @@ def wait_until_location_does_not_contain(self, location, timeout=None, message=N
127127
The ``message`` argument can be used to override the default error
128128
message.
129129
130-
New in SeleniumLibrary 5.0
130+
New in SeleniumLibrary 4.3
131131
"""
132132
location = str(location)
133133
self._wait_until(lambda: location not in self.driver.current_url,

0 commit comments

Comments
 (0)