Search code examples
imacros

Can not press enter key with textarea in imacros


I just tried to hit the enter key with imacros in firefox but doesnt work. The photo of my div is:

The image of my div

I tried using the following code:

EVENT TYPE=KEYPRESS SELECTOR="HTML>BODY>#number>DIV:nth-of-type(5)>DIV:nth-of-type(3)>DIV:nth-of-type(2)>textarea" KEY=13

But not work why is not working keypress with imacros. my version is: 8.9.7


Solution

  • Sometimes other key event types might help:

    EVENT TYPE=KEYDOWN SELECTOR="HTML>BODY>#number>DIV:nth-of-type(5)>DIV:nth-of-type(3)>DIV:nth-of-type(2)>textarea" KEY=13
    

    or

    EVENT TYPE=KEYUP SELECTOR="HTML>BODY>#number>DIV:nth-of-type(5)>DIV:nth-of-type(3)>DIV:nth-of-type(2)>textarea" KEY=13