pexpect : Sending Function characters

1.2k Views Asked by At

Hi everyone.I need to send F2 key using pexpect.I have tried child.send("^[OQ").But it is not working.The sendcontrol() function can send only control characters ,so I have no idea.Anybody please suggest a way to send F2 key

1

There are 1 best solutions below

4
On

Run the getch.py script from the pexpect test directory to see what raw bytes the terminal is getting, and press F2. Then you'll need to press Ctrl+Space to quit.

On my system, F2 gives me the numbers 27, 79, 81. So the equivalent with pexpect should be:

p.send(b'\x1bOQ')

Or:

p.sendcontrol('[')
p.send('OQ')