it can find the elements at the site and i am sure from method name
and every step i make with selenium i got error can i solve this error at once with any replacement
this is the code
JavaScript
x
12
12
1
from selenium import webdriver
2
from webdriver_manager.chrome import ChromeDriverManager
3
from selenium.webdriver.chrome.options import Options
4
from selenium.webdriver.chrome.service import Service
5
from selenium.webdriver.common.by import By
6
from selenium.webdriver.common.keys import Keys
7
options = Options()
8
options.add_experimental_option("detach", True)
9
d = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
10
d.get('https://elzero.org/')
11
d.find_element(By.CLASS_NAME, "form").send_keys('python')
12
and this the Traceback:
JavaScript
1
36
36
1
Traceback (most recent call last):
2
File "C:UsersabdalPycharmProjectspythonProjectmain.py", line 11, in <module>
3
d.find_element(By.NAME, "form").send_keys('python')
4
File "C:UsersabdalPycharmProjectspythonProjectvenvlibsite-packagesseleniumwebdriverremotewebdriver.py", line 857, in find_element
5
return self.execute(Command.FIND_ELEMENT, {
6
File "C:UsersabdalPycharmProjectspythonProjectvenvlibsite-packagesseleniumwebdriverremotewebdriver.py", line 435, in execute
7
self.error_handler.check_response(response)
8
File "C:UsersabdalPycharmProjectspythonProjectvenvlibsite-packagesseleniumwebdriverremoteerrorhandler.py", line 247, in check_response
9
raise exception_class(message, screen, stacktrace)
10
selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"css selector","selector":"[name="form"]"}
11
(Session info: chrome=103.0.5060.134)
12
Stacktrace:
13
Backtrace:
14
Ordinal0 [0x011B5FD3+2187219]
15
Ordinal0 [0x0114E6D1+1763025]
16
Ordinal0 [0x01063E78+802424]
17
Ordinal0 [0x01091C10+990224]
18
Ordinal0 [0x01091EAB+990891]
19
Ordinal0 [0x010BEC92+1174674]
20
Ordinal0 [0x010ACBD4+1100756]
21
Ordinal0 [0x010BCFC2+1167298]
22
Ordinal0 [0x010AC9A6+1100198]
23
Ordinal0 [0x01086F80+946048]
24
Ordinal0 [0x01087E76+949878]
25
GetHandleVerifier [0x014590C2+2721218]
26
GetHandleVerifier [0x0144AAF0+2662384]
27
GetHandleVerifier [0x0124137A+526458]
28
GetHandleVerifier [0x01240416+522518]
29
Ordinal0 [0x01154EAB+1789611]
30
Ordinal0 [0x011597A8+1808296]
31
Ordinal0 [0x01159895+1808533]
32
Ordinal0 [0x011626C1+1844929]
33
BaseThreadInitThunk [0x752AFA29+25]
34
RtlGetAppContainerNamedObjectPath [0x77207A9E+286]
35
RtlGetAppContainerNamedObjectPath [0x77207A6E+238]
36
Advertisement
Answer
There is no such element with class form
in your page. Also you can send keys only to a input element and not a form element.
This should work
JavaScript
1
17
17
1
from selenium import webdriver
2
from webdriver_manager.chrome import ChromeDriverManager
3
from selenium.webdriver.chrome.options import Options
4
from selenium.webdriver.chrome.service import Service
5
from selenium.webdriver.common.by import By
6
from selenium.webdriver.common.keys import Keys
7
from selenium import webdriver
8
9
10
options = Options()
11
12
options.add_experimental_option("detach", True)
13
d = webdriver.Chrome(service=Service(ChromeDriverManager().install()), options=options)
14
15
d.get('https://elzero.org/')
16
d.find_element(By.ID, "search").send_keys('python')
17
Additionaly you can send ENTER
key to search the token.
JavaScript
1
2
1
d.find_element(By.ID, "search").send_keys(Keys.ENTER)
2