TestNG Tutorial #11 - DataProvider in TestNG | Data Driven Testing

Поділитися
Вставка
  • Опубліковано 6 жов 2024
  • Get all my courses for USD 5.99/Month - bit.ly/all-cou...
    🔸FREE Training's at training.rcvac... 🔔SUBSCRIBE to CHANNEL: bit.ly/2YGU6JM
    In this TestNG tutorial we will learn about DataProvider in TestNG and how to user TestNG dataprovider to perform data driven testing in Selenium WebDriver.
    TestNG library provides @DataProvider annotation which is used to mark a method as supplying data for a test method. Watch the full series to learn complete TestNG test framework.
    Help me in spreading the knowledge, please hit LIKE, SHARE and SUBSCRIBE for 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/...
    #TestNGTutorial #TestNG #TestAutomation #SeleniumWebDriverTutorial #SeleniumWebDriver #SoftwareTesting #RcvAcademy #SoftwareTestingMentor

КОМЕНТАРІ • 18

  • @meghavyas9402
    @meghavyas9402 3 роки тому +1

    I have completed 71 videos. Thank you so much. It cleared my all concept.

  • @phanikiran9826
    @phanikiran9826 Рік тому +1

    Very nice explanation..sysout("Clapping");

  • @madhurikupate2769
    @madhurikupate2769 Рік тому +1

    Explain very well

  • @studiesonsoftwaretesting9768
    @studiesonsoftwaretesting9768 3 роки тому +1

    👍👍👍👍👍great video

  • @sumantrajdeshpande1829
    @sumantrajdeshpande1829 2 роки тому

    Please, keep your expalination tone of voice very specific. When we listen it , it seems like you are giving personal interview. OR it seems like you are narrating somthing. Means Explain like Durga sir of Durgasoft acadamy.

  • @eineinfachermann4092
    @eineinfachermann4092 4 роки тому

    Intellij works differently:
    @Test needs dataProvider name:
    @Test(dataProvider = "dataSet1") //this must be inserted in intellij, dataSet1 oder dataSet2
    public void test(String username, String password, int number)
    {
    System.out.println(username+" >=====< "+password);
    }

  • @aratidalvi8227
    @aratidalvi8227 4 роки тому +1

    Hi I am getting error "DataProvider is not an annotation type" please help me

  • @sivasankar2968
    @sivasankar2968 3 роки тому +2

    In "dataset1" method you are declaring two-dimensional array but you are loading and returning three-dimensional data. Can anyone please explain how it's work