Linked Questions
Ask Question 14 Questions Linked to/from Selenium - Python - Attributeerror: 'Webdriver' Object Has No Attribute 'Find_Element_By_Name' Hot Newest Score Active...
14 questions linked to/from Selenium - Python - AttributeError: 'WebDriver' object has no attribute 'find_element_by_name'
-2
votes
1
answer
88
views
How to log in to facebook using python?
I want to log in to facebook but there is an error.
the code I am running:
from selenium import webdriver
from selenium.webdriver.common.keys
import time
email = "[email protected]"
...
0
votes
0
answers
19
views
Error: Could not open the website with the specified YouTube-Link: 'WebDriver' object has no attribute 'find_element_by_id' [duplicate]
i tried to make a tool to open youtube videos automatically and also play them. I tried that the script also accept the Cookie policy from youtube witth the accept button. I also tried to change the ...
5
votes
2
answers
7k
views
getting error when I run selenium script Value Error: Timeout value connect was <object object at 0x000002A40BE37F80>
I'm new to selenium and wrote the below code to open amazon site. But when I run, I get the error which I pasted below.
from selenium import webdriver
driver = webdriver.Chrome(executable_path="C:...
0
votes
0
answers
22
views
find_element_by_id method attribute error [duplicate]
I am trying to automate a web task so I decided to use selenium library.
I created a sample code just to experiment with the library but I'm finding that I'm getting a AttributeError on my driver ...
0
votes
1
answer
194
views
Selenium -Attribute Error 'WebDriver' object has no attribute 'find_elements_by_class_name'
I am trying to web scrape the site but I am constantly getting webdriver has no attribute find elements by class name.
from selenium import WebDriver
url="
0
votes
0
answers
114
views
Selenium behave error>> AttributeError: module 'selenium.webdriver' has no attribute 'find_element'
I am unable to resolve this issue by following below answers
Selenium - Python - AttributeError: 'WebDriver' object has no attribute 'find_element_by_name'
I am using python behave ...
1
vote
1
answer
521
views
Didn't work driver.find_elements_by_class_name() and driver.find_elements() functions
I have tried to retrieve some data from url page via Selenium, but after running function driver.find_element_by_class_name() I have obtained error message:
'WebDriver' object has no attribute '...
0
votes
1
answer
56
views
How to correct this python3 code? Please advise
I'm trying to write a python3 code which will open a internal website of Innovaphone and click on the link and then click a button to activate it. I need to do this after 99 hours.
I'm getting error.
...
1
vote
1
answer
1k
views
Linkedin LogIn with Selenium [duplicate]
I am creating a short program in Python - Selenium to login to my Linkedin Profile, it opens the new windows but I get an error on line 13 during the debug:
Exception has occurred: AttributeError
'...
1
vote
1
answer
359
views
'WebDriver' object has no attribute 'find_element_by_name'
Whenever I run the code it brings up the Instagram page for about two seconds until it closes and then it gives me this error:
'WebDriver' object has no attribute 'find_element_by_name'
Whenever I ...
92
votes
4
answers
126k
views
find_element_by_* commands are deprecated in Selenium
When starting the function
def run(driver_path):
driver = webdriver.Chrome(executable_path=driver_path)
driver.get(')
button = driver....
13
votes
4
answers
40k
views
Python Selenium Find Element by Name
I am using Python / Selenium and am trying to select an input box that does not have an ID:
HTML
<div class="form-group">
<input type="email"
class="...
6
votes
6
answers
23k
views
I can't send keys using Selenium WebDriver and Python
I am trying to execute a simple test:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
driver = webdriver.Firefox()
driver.get(')
driver....
6
votes
3
answers
16k
views
Using Selenium on Raspberry Pi with Chromium
So I'm trying to run Selenium on my raspberry pi using Chromium and for some reason I can't get my python file to compile. I keep getting the following error:
Traceback (most recent call last):
...