Skip to content

Commit 9a5e367

Browse files
authored
Changed docs to point Python 3 (robotframework#1391)
1 parent cdac3f8 commit 9a5e367

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/SeleniumLibrary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ class SeleniumLibrary(DynamicCore):
293293
it is either empty or case-insensitively equal to ``false``, ``no``, ``off``,
294294
``0`` or ``none``. Other strings are considered true regardless their value, and
295295
other argument types are tested using same
296-
[https://docs.python.org/2/library/stdtypes.html#truth-value-testing|rules as in Python].
296+
[https://docs.python.org/3/library/stdtypes.html#truth-value-testing|rules as in Python].
297297
298298
True examples:
299299

src/SeleniumLibrary/keywords/screenshot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def capture_page_screenshot(self, filename='selenium-screenshot-{index}.png'):
6565
``{index}``, it will be automatically replaced with unique running
6666
index preventing files to be overwritten. Indices start from 1,
6767
and how they are represented can be customized using Python's
68-
[https://docs.python.org/2/library/string.html#formatstrings|
68+
[https://docs.python.org/3/library/string.html#format-string-syntax|
6969
format string syntax].
7070
7171
An absolute path to the created screenshot file is returned.

0 commit comments

Comments
 (0)