Selenium Cucumber BDD Framework with Java and TestNG - Page Object Model | POM

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

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

  • @riyashukla1717
    @riyashukla1717 Год назад +4

    Brilliant explanation of POM it is. Thanks for all your efforts educating us on the cucumber framework.

    • @sdetadda
      @sdetadda  Год назад

      Glad it was helpful!

  • @AmitSharma-pu8rz
    @AmitSharma-pu8rz 6 месяцев назад +1

    Excellent explanation I'm really thankful to you !!

  • @pavanigovindu4120
    @pavanigovindu4120 Год назад +2

    Thank you very much well explanation...plz upload more videos

  • @testing24x7
    @testing24x7 Год назад

    Thank you so much for uploading. It was indeed very helpful.

    • @sdetadda
      @sdetadda  Год назад

      You're very welcome!

  • @testing24x7
    @testing24x7 Год назад +2

    It would be great if you can upload tutorial videos on tags and page factories in cucumber. Thanks in advance.

  • @shreyashpathak2645
    @shreyashpathak2645 Год назад +3

    Hello, Please share me the link as I have not watched the initial videos.

    • @sdetadda
      @sdetadda  Год назад +2

      ruclips.net/p/PLxD77px6418Xjdme8VHlxy15qc038DQmt&si=2Wl5pLPf28dkvC2W

  • @boundlessgyan
    @boundlessgyan Год назад +2

    Page object model explaination ❤

  • @NeelimaN-r6t
    @NeelimaN-r6t 2 месяца назад

    Hi
    I did extactly what you have shown in the video , but i am getting null pointer exception. don't know exactly where i did mistake. please please anyone help me out

  • @ptechsolutions9575
    @ptechsolutions9575 8 месяцев назад

    Hello sir do you have notes for selenium interview

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

    Getting error while running the file please help

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

      Can you post the error trace you are getting?

  • @YasmeenAbdelgwad
    @YasmeenAbdelgwad 8 месяцев назад

    when integrating Cucumber with POM , getting this error
    [31mjava.lang.NullPointerException: Cannot invoke "org.openqa.selenium.WebDriver.findElement(org.openqa.selenium.By)" because "this.driver" is null
    at pageObjects.loginPage.enterValidData(loginPage.java:27)
    at StepDefinitions.LoginStepsDefinition.user_enter_valid_data_and(LoginStepsDefinition.java:34)

    • @jairajnagariya95
      @jairajnagariya95 3 месяца назад +1

      add below constructor in loginpage(page object class)
      // Constructor to initialize WebDriver
      public loginPage(WebDriver driver) {
      this.driver = driver;
      }
      also use below line in step definition file
      login = new loginPage(driver); // Initialize the loginPage object with the driver
      it worked for me