Question #289462 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/289462

RaiMan posted a new comment:
# wrong type("a", Key.CTRL+Key.DELETE) #ctrl-a

# right
type("a", Key.CTRL)
type(Key.DELETE)

in your solution the +Key.DELETE is simply ignored.
But it works, because the paste overwrites the selection done by ctrl-a

so finally this would be sufficient:
type("a", Key.CTRL)
paste("Example")

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to