Selenium Python Tutorial #26 - How to Handle Checkbox in Selenium

Поделиться
HTML-код
  • Опубликовано: 11 сен 2024
  • Get all my courses for USD 5.99/Month - bit.ly/all-cou...
    In this Selenium Python Tutorial, we will learn how to handle checkbox in Selenium Python. Handling checkbox in Selenium python is absolutely simple and very similar to the other webelements in Selenium Webdriver. You have to get the locator of checkbox and then use click() method to select or deselect the checkboxes.
    We will also understand about is_selected() method which will conform if the checkbox is selected or deselected.
    FULL Playlist: bit.ly/Selenium...
    🔸FREE Training's at training.rcvac... 🔔SUBSCRIBE to CHANNEL: bit.ly/2YGU6JM
    Help me in spreading the knowledge, please hit LIKE, SHARE, and SUBSCRIBE for the latest tutorials. More tutorial playlists below:
    ✅ ALL PLAYLISTS (Software Testing Mentor)🔸 / softwaretestingmentor
    ✅ ALL PLAYLISTS (RCV Academy)🔸 / @rcvacademy
    ✅ JIRA BEGINNER TUTORIAL🔸 bit.ly/jira-beg...
    ✅ JIRA WORKFLOW TUTORIAL🔸 bit.ly/2EzKOEB
    ✅ JIRA ADMINISTRATION TUTORIAL🔸 bit.ly/36MPPFR
    ✅ JIRA TUTORIAL INTERMEDIATE🔸 bit.ly/Atlassia...
    ✅ JIRA TUTORIALS🔸 bit.ly/jira-tut...
    ✅ ZEPHYR TUTORIAL🔸 bit.ly/zephyr-f...
    ✅ SOAPUI TUTORIAL🔸 bit.ly/Sopui-tu...
    ✅ JSONPath TUTORIAL🔸 bit.ly/2sIZIFG
    ✅ POSTMAN TUTORIAL🔸 bit.ly/2PBbhI7
    ✅ ISTQB AGILE TESTER CERTIFICATION TUTORIAL🔸 bit.ly/istqb-ag...
    ✅ ISTQB FOUNDATION LEVEL CERTIFICATION TUTORIAL🔸 bit.ly/istqb-fo...
    ✅ CUCUMBER SELENIUM TUTORIAL🔸 bit.ly/cucumber...
    ✅ TESTRAIL TUTORIAL🔸 bit.ly/testrail...
    ✅ AGILE TUTORIALS🔸 bit.ly/agile-tu...
    ✅ PYTHON TUTORIALS🔸 bit.ly/python-p...
    ✅ PYTHON BEHAVE TUTORIALS🔸 bit.ly/python-b...
    ✅ PRACTITEST TUTORIAL🔸 bit.ly/practite...
    ✅ JAVA TUTORIAL🔸 bit.ly/2F1iL1B
    ✅ ZEPHYR TUTORIAL🔸 bit.ly/zephyr-f...
    🔶 ENROL IN MANY FREE TRAININGS ON RCV ACADEMY PORTAL 🔶
    training.rcvaca...
    🔶 FOLLOW US ON TWITTER 🔶
    / rcvacademy
    / swtmentor
    / mrmverma
    🔶 LIKE US ON FACEBOOK 🔶
    / softwaretestingmentor
    / rcvacademy47
    🔶 OUR TUTORIAL WEBSITES 🔶
    www.softwarete...
    www.rcvacademy...
    🔶 GET MY TRAININGS ON UDEMY 🔶
    www.udemy.com/...
    #SeleniumPythonTutorial #PythonSelenium #SeleniumPython #PythonSeleniumTutorial #SeleniumWebdriver #TestAutomation #SoftwareTesting #RcvAcademy #SoftwareTestingMentor
    Join this channel to get access to perks:
    / @softwaretestingmentor

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

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

    you are the bast!

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

    thank you

  • @sateeshkumar795
    @sateeshkumar795 9 месяцев назад

    Hi sir , like my query is where we will use python data structures while developing the test scripts using selenium with python in real life scenarios

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

    Hi, thanks for the video. Do you know how to handle with checkboxes that require to keep the key "CTRL" to select another checkbox ?

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

    Very informative sir, just one question. Let's consider there is only one checkbox in a webpage. And I want to get is selected. Is there any option so that we don't need to provide the xpath or the I'd to get that selected. For ease, when we run the console , it should open the webpage and automatically select the checkbox anywhere on the webpage. Is it possible. Please help.

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

    Sir, it asking accept cookies i click manually on it and element is not found returns false
    If i didnt accept cookies it throws an exception saying that no such element to click

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

    Hello sir, can you please share the code for selenium python tutorial series

  • @refrefwgwgwegew
    @refrefwgwgwegew 3 года назад +1

    the website I am trying to check a box on doesnt have id's for the checkboxes. I have been trying with xpath but no success yet.. Anyone knows how to tackle this?

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

      I think u clicked on the text beside to checkbox thats y its not showing u id
      Make sure u have to select selct the check box and inspect

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

    how to handle cookies sir?

    • @UlianaPratsun
      @UlianaPratsun 7 месяцев назад

      Just write a command to click the "accept cookies" button automatically before executing another commands. You can run your browser using incognito window to inspect that button
      the command may look like:
      driver.find_element(By.XPATH, "xpath_of_the_accept_cookies_button").click()