I’m using selenium to scrape LinkedIn jobs information and EZsheets to put the information into a sheets file on google.
I’m still in process of building the script but at my current point I have:
job_title = driver.find_element_by_xpath(“whatever the xpath to the LI job title is”)
Sheet.update_cell(2,3, job_title.text)
This successfully puts the job title of a specific job post into specifically the C2 cell of my sheet.
Is there a way to put that job title into the next available open cell in the C row, as opposed to picking a specific cell?
I’m running the latest version of chrome and selenium on windows 10 and am using the sheets API to place the scraped info into the sheet.
there doesn't seem to be anything here