Select Drop Down Values in Selenium Python - Part 4
HTML-код
- Опубликовано: 27 ноя 2024
- In this video, I have explained how to select drop down values using Select class for select html tag based drop downs.
Learn:
--what is select_by_visible_text()
--what is select_by_index()
--What is select_by_value()
--is_multiple
--how to create generic methods for drop down selection
--how to select values from dropdown without using select class
~~~Subscribe to this channel, and press bell icon to get some interesting videos on Selenium and Automation:
www.youtube.co...
Follow me on my Facebook Page:
/ naveenqtpexpert
Let's join our Automation community for some amazing knowledge sharing and group discussion on Telegram:
t.me/joinchat/...
Paid courses (Recorded) videos:
naveenautomati...
For Java & Selenium - naveenautomatio...
For API (Manual + Automation) - naveenautomatio...
Bhai you are helping the community. We are proud to have a mentor like you. I am not happy to see 280K subscribers. It should have been more than 1 M long ago. Please market it, you deserve to stand in shark tank india. You are giving more to the society right now than what we are giving to you. Bde bhai aap millions subscriber deserve krte ho
These videos are really helpful for my training.
Quick one - How to select value if dropdown is not Select Tag
Example : OrangeHRM demo page once we login, Employment Status field which is dropdown but not select Tag
"Freelance"
Sorry! I got it here. Thank you again ruclips.net/video/zw99PZalGqA/видео.html
Hi Naveen i like your videos , plz make daily videos if possible bcz many persons are waiting your python automation videos.
Very informative videos! Each step explained with such clarity. Finally found something worth coming back to again and again for reference. Thank you Naveen!
Hi Naveen, I request you to include pytest pararmeterization and fixtures in this series.
Naveen bhai, your videos are very clear. Thanks for the videos.
Hi Naveen,
I have two groups in dropdown options like..
Email
Email
Email
Email
Custom Text Fields
Custom Date Fields
How to select option form dropdown like email... I am sure you will surely help in this.
unable to select...please help
Hi Naveen, i was unable to join telegram! Is there any other way to join the telegram group ?
Amazing! Thank you, Sir!
waiting for the video...
Amazing...🤝🤝
Very use full. And how do compare the actual and expected dropdown lists?
Could you explain how css selectors work and what kind of them exist?
Sir how to select the 'SELECT' tag when the 'id' is dynamic and nothing unique is there to select?
Hi Naveen,
Can you load above examples in your Github because I getting below error just want to compare my code what I am missing :
********** Error **********
File "C:/Users/ASHUTOSH SINGH/PycharmProjects/Selenium-Python-Practice/SelenuimSession/DropDownHandle.py", line 33, in
for ele in dropDownOptionsList:
NameError: name 'dropDownOptionsList' is not defined
Check the git now
@@naveenautomationlabs Got it Thanks
What if the web element is a search field and it delivers a list based on the fact what you typed in?
extract all the suggestions and then run a loop over those result and select any option you want by using if clause.
@@UsamaAli-kr2cw ty. 👍🏼
we can select the values from drop down without using select by this xpath
"driver.find_element(By.XPATH,"//option[@value='0 - 10']").click()"
this did not work for me.