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 8b9a01d commit 2bd6e1bCopy full SHA for 2bd6e1b
README.md
@@ -447,9 +447,9 @@ self.get_page_source() # This method returns the current page source.
447
Ex:
448
```python
449
source = self.get_page_source()
450
-first_image_open_tag = source.find('<img>')
451
-first_image_close_tag = source.find'</img>', first_image_open_tag)
452
-everything_inside_first_image_tags = source[first_image_open_tag+len('<img>'):first_image_close_tag]
+head_open_tag = source.find('<head>')
+head_close_tag = source.find('</head>', head_open_tag)
+everything_inside_head = source[head_open_tag+len('<head>'):head_close_tag]
453
```
454
455
#### Clicking
0 commit comments