Linked Questions
Andrew Henderson
Ask Question 14 questions linked to/from Selenium - Python - AttributeError: 'WebDriver' object has no attribute 'find_element_by_name' Hot Newest Score Active Unanswered -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]" ...- 1
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 ...- 11
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:...- 51
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 ...- 35
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="- 11
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 ...- 3
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 '...- 51
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
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 '...- 15
'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 ...- 11
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....- 1,039
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> <input type="email"ml0 list-ls-none js-post-tag-list-wrapper d-inline">- 12k
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....- 61
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): ...- 61