Question #239081 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/239081
Status: Needs information => Answered
jptlse proposed the following answer:
If you want to get the data in the field of your text box perhaps try to
use key interaction to "select all" and "copy" data ?
find("Image of your field empty")
wait(10)
# text box is no more empty
if not find("Image of your field empty"):
type('a', KeyModifier.CTRL) # Select all
type('c', KeyModifier.CTRL) # Copy
print 'Data input copied: ' + Env.getClipboard() # Get from clipboard
--
You received this question notification because you are a member of
Sikuli Drivers, which 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