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 720996b commit ceaaf01Copy full SHA for ceaaf01
seleniumbase/fixtures/base_case.py
@@ -2570,10 +2570,10 @@ def get_domain_url(self, url):
2570
2571
def get_beautiful_soup(self, source=None):
2572
""" BeautifulSoup is a toolkit for dissecting an HTML document
2573
- and extracting what you need. It's great for screen-scraping! """
+ and extracting what you need. It's great for screen-scraping!
2574
+ See: https://www.crummy.com/software/BeautifulSoup/bs4/doc/ """
2575
from bs4 import BeautifulSoup
2576
if not source:
- self.wait_for_ready_state_complete()
2577
source = self.get_page_source()
2578
soup = BeautifulSoup(source, "html.parser")
2579
return soup
0 commit comments