We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1046cf commit 4b8044cCopy full SHA for 4b8044c
examples/my_first_test.py
@@ -72,21 +72,21 @@ def test_basic(self):
72
#
73
# The following line:
74
# [
75
- # caption = self.get_attribute('#comic img', 'title')
+ # title = self.get_attribute('#comic img', 'title')
76
# ]
77
# Can also be written as:
78
79
- # image_object = self.find_element('#comic img')
80
- # caption = image_object.get_attribute('title')
+ # element = self.find_element('#comic img')
+ # title = element.get_attribute('title')
81
82
83
# And the following line:
84
85
- # header_text = self.get_text('header h2')
+ # text = self.get_text("div center")
86
87
88
89
- # header_text = self.find_element('header h2').text
+ # text = self.find_element('div center').text
90
91
# ...and in many more ways!
92
0 commit comments