I can't interfere with any element on this site. Could you help ? Thank you very much for your answers in advance.
https://pttws.ptt.gov.tr/info_web/info_kayit.jsp
driver = webdriver.Chrome()
driver.get("https://pttws.ptt.gov.tr/info_web/info_kayit.jsp")
inputs = driver.find_element(By.TAG_NAME, "input")
for input_element in inputs:
print(input_element.get_attribute("id"))
++
devTools listening on ws://127.0.0.1:52080/devtools/browser/196a44c6-8117-4520-bce9-a02c51c2a35f Traceback (most recent call last): File "C:\Users\r00t\Downloads\test_ptt.py", line 16, in inputs = driver.find_elements(By.TAG_NAME, "input") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "C:\Python311\Lib\site-packages\selenium\webdriver\remote\webdriver.py", line 861, in find_elements return self.execute(Command.FIND_ELEMENTS, {"using": by, "value": value})["value"] or [] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^