sendKeys() Command of Actions Class - Selenium WebDriver

Поделиться
HTML-код
  • Опубликовано: 27 авг 2024
  • View Notes here - www.evernote.co...
    In this video, I have practically demonstrated using one of the Selenium WebDriver commands of Actions class i.e. sendKeys() Command

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

  • @RajeshKumar-0101
    @RajeshKumar-0101 Год назад

    webelement.sendKeys("Name", Keys.TAB); - working fine for me Sir
    sendKeys of a webelement also working to press any Key

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

    Can you please tell me about ctrl F

    • @ashutoshpandey5416
      @ashutoshpandey5416 Год назад +1

      Action ac = new Actions(driver);
      ac.keyDown(Keys.CONTROL).sendKeys("f").build().perform();
      ac.keyUp(Keys.CONTROL).build().perform();