Dogukan
Dogukan

Reputation: 89

how to click somewhere on page with BeautifulSoup

I am doing web scraping with BeautifulSoup.I want to scrape comments from steam profiles.But I have a problem I cant change the current page after I am done with first comment page because comment page is not related to URL so cant control it with URL .

Upvotes: 1

Views: 221

Answers (1)

apexdodge
apexdodge

Reputation: 6977

BeautifulSoup doesn't really handle that. For what you describe, you need to look into a browser automation tool, like Selenium for example.

Upvotes: 1

Related Questions