“Python Selenium Dapatkan Gambar SRC” Kode Jawaban

Python Selenium Dapatkan Gambar SRC

driver.find_element_by_id("element_id").get_attribute("src")
Navid2zp

selenium python mendapatkan gambar dari url

from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.action_chains import ActionChains

wait = WebDriverWait(browser, 20)
actions = ActionChains(browser)

product_img_xpath = '//div[contains(@class,"s-item")]//img'
wait.until(EC.visibility_of_element_located((By.XPATH, product_img_xpath)))
time.sleep(1)

imgs = browser.find_elements_by_xpath(product_img_xpath)
for img in imgs:
    actions.move_to_element(img).perform()
    print(img.get_attribute('src'))
Jealous Jaguar

Jawaban yang mirip dengan “Python Selenium Dapatkan Gambar SRC”

Pertanyaan yang mirip dengan “Python Selenium Dapatkan Gambar SRC”

Lebih banyak jawaban terkait untuk “Python Selenium Dapatkan Gambar SRC” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya