I have a web page open and logged in using webdriver code. Using webdriver for this because the page requires login and various other actions before I am set to scrape.
The aim is to scrape data from this open page. Need to find links and open them, so there will be a lot of combination between selenium webdriver and BeautifulSoup.
I looked at the documentation for bs4 and the BeautifulSoup(open("ccc.html"))
throws an error
soup = bs4.BeautifulSoup(open("https://m/search.mp?ss=Pr+Dn+Ts"))
OSError: [Errno 22] Invalid argument: 'https://m/search.mp?ss=Pr+Dn+Ts'
I assume this is because its not a .html
?