Search code examples
seleniumselenium-webdriverautomationselenium-ide

Selenium IDE sendkeys() without target


i'm using selenium IDE for automation testing, i tried to use keypress on selenium, but because my site blocking any click and can only use keyboard for operating, i cant use sendkeys() to run it with selenium IDE because the empty target, is that possible to use sendkey without target? or is that another way to press key without target?

thanks for helping.


Solution

  • In regular Selenium you can sendKeys without a target web element with Actions.
    As I see here this can also be done with Selenium IDE.
    There are more additional documentations and tutorials about this.