#11 - Writing Page Object Model code for Selenium with C# .NET

Поділитися
Вставка
  • Опубліковано 19 січ 2025

КОМЕНТАРІ • 5

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

    Thank you!

  • @Satyaeluru
    @Satyaeluru 8 місяців тому +1

    Best support Karthik thnQ

  • @sawekwo.7896
    @sawekwo.7896 5 місяців тому +1

    Awesome, thx.

  • @SandipPateltube
    @SandipPateltube 4 місяці тому

    What can we do for an element which requires wait? How can we use operator => for the statement like
    wait.Until(SeleniumExtras.WaitHelpers.ExpectedConditions.ElementToBeClickable(By.Name("btnSubmit")));
    ??

    • @RRbestever
      @RRbestever 21 день тому +1

      you can extract that line with waitHelpers into a method called WaitUntilClickeable, which receives a By type parameter and returns the clickeable element, and declare the element like IWebElement SubmitBttn => WaitUntilClickeable(By.Name("btnSubmit"))