I would like to scrape this web page:
but fiding it hard and impossible. How do I scrape this headers from news, and for each radio button?(bearish and bullish are radio buttons).
I also need to do it for eur and usd (so 4 scrapes from that page). How do or can I do this?
Nothing seems to work, I don't have a lot of knoledge of BeautifulSoap, but if tried. I've tried with css, with classes and id, and always no response. It seems it doesn't find those classes.
this was my last attempt:
for e in html.res.select("[class~=fxs_tab]"):
print(e.li.text)
print(type(e.li.text))
titulares.append(e.li.text)