help me with this error as only website opens and send keys are not working AttributeError: 'WebDriver' object has no attribute 'find_element_by_id'
@shubhampandey9869 ай бұрын
import this and insted of using that use find_element(BY.ID,' value' ) from selenium.webdriver.common.by import By
@simrahsaif2 ай бұрын
thank u soo much u made my life so much easier
@undefined362 жыл бұрын
Hello, Suddenly webdriver_manager stopped working and posted an error, no webdriver_manager no such module ChromeDriverManager. How to get rid of it. Please help me. I uninstalled python and pycharm entirely and reinstalled but they were no use.
@timecontinuumkerkar69682 жыл бұрын
if you see the object/instance that is created of the demo class. it is marked by a warning. If you hover over it, then it tells you to add spaced lines for the function and object created to work properly. remember to clear the warning to make your code cleaner and efficient.
@anomevalijan89622 жыл бұрын
Thank you for all valuable tutorials
@softwaretestingmentor2 жыл бұрын
Glad you like them! Keep watching for more videos and tutorials.
@JaMi-d7m9 ай бұрын
i try to automate a page that dynamicaly changes id to the buttons every time i log in and sometimes it has captcha . can you make a video to show a way to avoid these situations?
@manavshah6860 Жыл бұрын
I was working on your solution and I found that new version of selenium getting the error for find_element_by_id method that no attribute. I have read the documentation and found the new method find_element. if any one have solution and questions for above method how to used please let me know.
@mounimouni7404 Жыл бұрын
send_keys function was not working sir then what should i do ?
@kurtpogi1011 Жыл бұрын
what do you mean not working? you might using the wrong ID?
@fulldog54683 жыл бұрын
Please, subtitles option does not appear. Transcription does not work. Thanks Manish
@sudharshanharan453 Жыл бұрын
On this case i am getting the Attribute error as AttributeError: 'NoneType' object has no attribute 'send_keys' Can you please guide me for this. I refered other classes as well for resolving this but i am not able to resolve
@vijaypratap6698 Жыл бұрын
Hi sir I am facing one issue i am getting error attribute error web driver object has no attribute find element by xpath pr id or name
@infinity8288 Жыл бұрын
#files to import from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC #selector to run wait = WebDriverWait(driver, 10) element = wait.until(EC.visibility_of_element_located((By.NAME, "firstName"))) element.send_keys("Hello, world!")
@abhishekranjan17212 жыл бұрын
Hii, I am getting only two options: 1. find_element(self,by,value) 2.find_elements(self,by,value) Please help me with that
@v_r33802 жыл бұрын
from selenium.webdriver.common.by import By driver.find_element(By.ID, 'some_ID')
@lofijedi2 ай бұрын
'Executible_path' is deprecated in selenium 4, i instead used "driver = webdriver.Chrome(service=Service(ChromeDriverManager().install()))" Also, find_element_by_id is deprecated i instead used "driver.find_element_by_id('ID YOU WANT').send_keys('Keys to send')"
@hardeepsingh-or2dz2 жыл бұрын
Locating element syntax has been changed please refer to new locators
@restoreupscale1521 Жыл бұрын
Yeah, and tbh I find that change annoying.
@dougm118 Жыл бұрын
@@restoreupscale1521 sign of the times; things change regularly with open source code and third party libraries. People refactor for good reason; unfortunately it causes previous training to become outdated which can be hard on a student just trying to follow along. I really know of no great way these days to train, without trying things, failing forward, googling, and reading the updated docs.
@ParthivShah2 жыл бұрын
Thanks.
@softwaretestingmentor2 жыл бұрын
You're welcome. Keep watching for more videos!
@bogart0476 ай бұрын
on the web page id of element always must be unique
@djonatasborges74193 жыл бұрын
Subtitles please!
@marekpuskas10043 жыл бұрын
Please subtitles :-(
@infinity8288 Жыл бұрын
driver.find_element_by_name("firstName").send_keys("John") ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ AttributeError: 'NoneType' object has no attribute 'send_keys'