Wie kann man durch mit Selen in Python iterieren?Python

Python-Programme
Anonymous
 Wie kann man durch mit Selen in Python iterieren?

Post by Anonymous »

Ich versuche, eine Liste von Elementen in einem -Element zu iterieren. Keiner meiner Druckanweisungen gibt etwas zurück und die Ausgabe besagt, dass das Element nicht gefunden wird, aber ich weiß nicht, auf welches Element es sich bezieht. Ich weiß, dass alle Elemente, nach denen der Code sucht, von der Verwendung von Elements da sind. Warum passiert das?

Code: Select all

from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

service = Service(executable_path="chromedriver.exe")

options = webdriver.ChromeOptions()
options.add_argument(f"--user-data-dir=C:/Users/maxim/AppData/Local/Google/Chrome/User Data")
options.add_argument(f'--profile-directory=Default')

driver = webdriver.Chrome(service=service, options=options)
driver.get("https://nepeto.com/retail")

table = WebDriverWait(driver, 999999999999999999999).until(
EC.presence_of_element_located((By.CLASS_NAME, "table is-hoverable products-table"))
)
print(table)
tbody = table.find_element(By.TAG_NAME, "tbody")
print(tbody)
items = tbody.find_elements(By.TAG_NAME, "tr")
print(items)
for i, row in enumerate(items):
print(f"Row {i}: {row.text}")
< /code>
Die Ausgabe ist: < /p>
DevTools listening on ws://127.0.0.1:61040/devtools/browser/91fd6ed5-42ba-4f0d-8af9-efd87354d971
[5848:14048:0423/162715.616:ERROR:device_event_log_impl.cc(202)] [16:27:15.602] USB: usb_service_win.cc:105 SetupDiGetDeviceProperty({{A45C254E-DF1C-4EFD-8020-67D146A850E0}, 6}) failed: Element not found. (0x490)
[5848:15576:0423/162716.894:ERROR:registration_request.cc(291)] Registration response error message: DEPRECATED_ENDPOINT
Created TensorFlow Lite XNNPACK delegate for CPU.
Attempting to use a delegate that only supports static-sized tensors with a graph that has dynamic-sized tensors (tensor#-1 is a dynamic-sized tensor).
[5848:15576:0423/162746.588:ERROR:registration_request.cc(291)] Registration response error message: DEPRECATED_ENDPOINT
[5848:15576:0423/162829.292:ERROR:registration_request.cc(291)] Registration response error message: DEPRECATED_ENDPOINT

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post