Python Forum
scrape data 1 go to next page scrape data 2 and so on
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
scrape data 1 go to next page scrape data 2 and so on
#6
Hi everyone, I've rewritten my code using Selenium here:
table = driver.find_element_by_id('preblockBody')

job_elems = table.find_elements_by_xpath("//*[contains(@class,'pbListingTable')]")
for value in job_elems:
    print(value.text)

nxt=driver.find_element_by_xpath("//a[contains(@href, 'gotoNextPage(2)')]")
driver.execute_script("arguments[0].click();", nxt)
I'm now hoping to get some help on how to loop through all pages and append to a single output. I've tried a few different things, but again, pretty new so guidance is appreciated Smile
Reply


Messages In This Thread
RE: scrape data 1 go to next page scrape data 2 and so on - by alkaline3 - Mar-12-2020, 02:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Can't figure out how to scrape grid templeowls 3 271 Jun-19-2024, 05:45 PM
Last Post: Larz60+
  Trying to scrape data from HTML with no identifiers pythonpaul32 2 1,137 Dec-02-2023, 03:42 AM
Last Post: pythonpaul32
  how to scrape page that works dynamicaly? samuelbachorik 0 892 Sep-23-2023, 10:38 AM
Last Post: samuelbachorik
  I am trying to scrape data to broadcast it on Telegram BarryBoos 1 2,505 Jun-10-2023, 02:36 PM
Last Post: snippsat
  Scrape table from multiple pages Nhattanktnn 1 1,044 Jun-07-2023, 09:35 AM
Last Post: Larz60+
  Simple screen scrape is baffling me. monty024 1 1,142 Apr-26-2023, 03:27 PM
Last Post: snippsat
  Help to web scrape from 2 diffrent sources Extra 0 911 Jan-05-2023, 12:39 AM
Last Post: Extra
  How can I web scrape the "alt" attribute from a "img" tag with Python? cisky 1 4,292 Aug-19-2022, 04:59 AM
Last Post: snippsat
  How can I target and scrape a data-stat never5000 5 3,040 Feb-11-2022, 07:59 PM
Last Post: snippsat
Lightbulb Python Obstacles | Kung-Fu | Full File HTML Document Scrape and Store it in MariaDB BrandonKastning 5 3,115 Dec-29-2021, 02:26 AM
Last Post: BrandonKastning

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020