File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ def test_basic(self):
60
60
# Or:
61
61
# [
62
62
# text = self.find_element("h3").text
63
- # assert ("xkcd: volume 0" in text)
63
+ # self.assert_true ("xkcd: volume 0" in text)
64
64
# ]
65
65
#
66
66
# And the following line:
@@ -77,11 +77,13 @@ def test_basic(self):
77
77
# whitespace in the TEXT assertion.
78
78
# So, self.assert_exact_text("Some Text") will find [" Some Text "].
79
79
#
80
- # For backwards-compatibilty, some SeleniumBase methods that do the
80
+ # 5. For backwards-compatibilty, some SeleniumBase methods that do the
81
81
# same thing have multiple names, kept on from previous versions.
82
82
# Ex: wait_for_element_visible() is the same as find_element().
83
83
# Both search for and return the element, and raise an exception if
84
84
# the element does not appear on the page within the timeout limit.
85
85
# And assert_element() also does this (minus returning the element).
86
86
#
87
- # (See seleniumbase/fixtures/base_case.py for the full method list.)
87
+ # 6. For the full method list, see one of the following:
88
+ # * SeleniumBase/seleniumbase/fixtures/base_case.py
89
+ # * SeleniumBase/help_docs/method_summary.md
Original file line number Diff line number Diff line change @@ -355,6 +355,4 @@ self.process_delayed_asserts()
355
355
356
356
---
357
357
358
- Example Test: (<i >From [ my_first_test.py] ( https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py ) </i >)
359
-
360
- ![ ] ( https://cdn2.hubspot.net/hubfs/100006/images/SampleCode2.png " SeleniumBase Python Code ")
358
+ Example Test: [ my_first_test.py] ( https://github.com/seleniumbase/SeleniumBase/blob/master/examples/my_first_test.py )
You can’t perform that action at this time.
0 commit comments