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...

Комментарии • 26

  • @logicbaba17
    @logicbaba17 2 года назад +2

    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

  • @shivanandashetty3353
    @shivanandashetty3353 2 года назад

    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"

    • @shivanandashetty3353
      @shivanandashetty3353 2 года назад

      Sorry! I got it here. Thank you again ruclips.net/video/zw99PZalGqA/видео.html

  • @narendrapin2
    @narendrapin2 4 года назад +2

    Hi Naveen i like your videos , plz make daily videos if possible bcz many persons are waiting your python automation videos.

  • @ajiteshmane
    @ajiteshmane 2 года назад +1

    Very informative videos! Each step explained with such clarity. Finally found something worth coming back to again and again for reference. Thank you Naveen!

  • @panditnandlalpatherwali5979
    @panditnandlalpatherwali5979 4 года назад +3

    Hi Naveen, I request you to include pytest pararmeterization and fixtures in this series.

  • @MohamedAshikKamalBatcha
    @MohamedAshikKamalBatcha 4 года назад +1

    Naveen bhai, your videos are very clear. Thanks for the videos.

  • @mharogaonthevillagelife9516
    @mharogaonthevillagelife9516 4 года назад +1

    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

  • @erickandel1221
    @erickandel1221 4 года назад +2

    Hi Naveen, i was unable to join telegram! Is there any other way to join the telegram group ?

  • @FreedomCounty
    @FreedomCounty 4 года назад +1

    Amazing! Thank you, Sir!

  • @panditnandlalpatherwali5979
    @panditnandlalpatherwali5979 4 года назад +1

    waiting for the video...

  • @varshas6526
    @varshas6526 4 года назад

    Amazing...🤝🤝

  • @attitudelove4517
    @attitudelove4517 2 года назад

    Very use full. And how do compare the actual and expected dropdown lists?

  • @DanielWeikert
    @DanielWeikert 4 года назад

    Could you explain how css selectors work and what kind of them exist?

  • @vinayyadav2036
    @vinayyadav2036 3 года назад

    Sir how to select the 'SELECT' tag when the 'id' is dynamic and nothing unique is there to select?

  • @ashuiet
    @ashuiet 4 года назад

    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

  • @Kig_Ama
    @Kig_Ama 3 года назад

    What if the web element is a search field and it delivers a list based on the fact what you typed in?

    • @UsamaAli-kr2cw
      @UsamaAli-kr2cw 2 года назад +1

      extract all the suggestions and then run a loop over those result and select any option you want by using if clause.

    • @Kig_Ama
      @Kig_Ama 2 года назад

      @@UsamaAli-kr2cw ty. 👍🏼

  • @tejastoley6714
    @tejastoley6714 3 года назад

    we can select the values from drop down without using select by this xpath
    "driver.find_element(By.XPATH,"//option[@value='0 - 10']").click()"

  • @Zack-ni3vz
    @Zack-ni3vz 3 года назад

    this did not work for me.