Relative Content

Tag Archive for selenium-webdriverweb-scraping

How do I scrape data from Google Find My Device

I am trying to scrape the website data over at https://www.google.com/android/find/ in order to obtain the data about device battery. However, I am unable to directly get this data using a session on selenium driver, I am trying to first login using my cookie and then open the website in the session.

How do I scrape data from Google Find My Device

I am trying to scrape the website data over at https://www.google.com/android/find/ in order to obtain the data about device battery. However, I am unable to directly get this data using a session on selenium driver, I am trying to first login using my cookie and then open the website in the session.

How do I scrape data from Google Find My Device

I am trying to scrape the website data over at https://www.google.com/android/find/ in order to obtain the data about device battery. However, I am unable to directly get this data using a session on selenium driver, I am trying to first login using my cookie and then open the website in the session.

How do I scrape data from Google Find My Device

I am trying to scrape the website data over at https://www.google.com/android/find/ in order to obtain the data about device battery. However, I am unable to directly get this data using a session on selenium driver, I am trying to first login using my cookie and then open the website in the session.

issues while webscraping Kickstarter

from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.chrome.options import Options from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC chromedriver = “C:\Users\xxx\Downloads\chromedriver-win32\chromedriver.exe” options = Options() options.add_argument(“–headless”) # Run in headless mode options.add_argument(“–disable-gpu”) service = Service(chromedriver) driver = webdriver.Chrome(service=service, options=options) url = “https://www.kickstarter.com/projects/owensrakukiln/the-laguna-clay-raku-kiln-for-owen/description” driver.get(url) try: story_section = WebDriverWait(driver, 20).until( […]

Issues with Venue Listing Script

I wrote a script to list the venues of a city from a website. However, I encountered two issues that I don’t know how to solve:

Locating elements by CSS selector with Selenium

I am trying to scrape some golf data from this page on the PGATour website using Seleniun 3.141.0 in Python 3.12.4. I’m having trouble selecting a paragraph element in the overview section near the top of the page listing the course location (Blaine, Minnesota). Here is my code:

Issue scraping tables with nested trs

Scraping data from collapsable tables using selenium, there are two tables where the structure differs: there are rows inside another tr. I want to access tds by index. However, this code first outputs those tables fully, then thrice the indices.