Skip to content

Tag: web-scraping

Selenium / Use pagination on site?

i want to trigger the pagination on this site: https://www.kicker.de/bundesliga/topspieler/2008-09 I found the element with this XPATH in the chrome-inspector: Now i want to click this element to go one page further – but i get an error. This is my code: But i get this error: How can i go to the next pa…

Extract single data point from multiple, webscraping

I am trying to extract stock symbols (3rd column) from the table in below screener: https://chartink.com/screener/2-short-trend and pass them on to a dataframe. Due to my limited knowledge, I have hit a wall and can not move past it. My code is: Output: I just need stock symbols: M&M, APOLLOTYRE etc., and…

How to go to the next page using BeautifulSoup?

I am trying to scrape data from all the 37 web pages from this website. The website I am scrapping doesn’t allow going to the next page through the search bar. This is the HTML written for the next button. I know that this can be done with Selenium, but is there any way to do this with BeautifulSoup? Is