Skip to content

Commit ceaaf01

Browse files
committed
Update "get_beautiful_soup()"
1 parent 720996b commit ceaaf01

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

seleniumbase/fixtures/base_case.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2570,10 +2570,10 @@ def get_domain_url(self, url):
25702570

25712571
def get_beautiful_soup(self, source=None):
25722572
""" BeautifulSoup is a toolkit for dissecting an HTML document
2573-
and extracting what you need. It's great for screen-scraping! """
2573+
and extracting what you need. It's great for screen-scraping!
2574+
See: https://www.crummy.com/software/BeautifulSoup/bs4/doc/ """
25742575
from bs4 import BeautifulSoup
25752576
if not source:
2576-
self.wait_for_ready_state_complete()
25772577
source = self.get_page_source()
25782578
soup = BeautifulSoup(source, "html.parser")
25792579
return soup

0 commit comments

Comments
 (0)