Env.getClipboard() will get what was last copied in the IDE and will not
change.  The waits are not strictly necessary in the code below, but I
was just making sure that I was not running into a race condition.  To
reproduce:

1. create an image around a text box that has text in it for clickPattern
2. in the sikuli IDE copy some text from below such as clickPattern. 
3. run the below code
sikuli will print: bug:clickPattern instead of bug:text from step 1
if use cmd-v in any editor will be the correct text from step 1

    click(clickPattern)
    
    type("a",KEY_CMD) 
    wait(1)   
    type("c",KEY_CMD)
    wait(1)

    print "bug:" + str(Env.getClipboard())

-- 
You received this bug notification because you are a member of Sikuli
Drivers, which is subscribed to Sikuli.
https://bugs.launchpad.net/bugs/769837

Title:
  X-1.0rc3: Env.getClipboard() seems to work only once and does not
  access real clipboard anymore after using paste()

Status in Sikuli:
  New

Bug description:
  --1. I use Interactive Sikuli Jython Session to do all this, if I
  relaunch it and check Env.getClipboard it has the new content. So it
  seems like Env.getClipboard only gets updated at the start.

  --2. After using paste() the first time, Env.getClipboard() only
  returns the last pasted content, no matter what the "real" clipboard
  may contain.

  -------------------------------------------------------------------------

  I'm trying to get a few lines of text into variables in a for loop using 
Env.getClipboard() but it only works on the first loop.
  On the second loopiteration  Env.getClipboard seems to always return the last 
value of the first one.

  I've checked the clipboard and the values are being correctly copied.

  Any ideia what might be causing this? runing v. X-1.0rc2 Mac OS 10.6.7

  Thanks in advance.

To manage notifications about this bug go to:
https://bugs.launchpad.net/sikuli/+bug/769837/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~sikuli-driver
Post to     : sikuli-driver@lists.launchpad.net
Unsubscribe : https://launchpad.net/~sikuli-driver
More help   : https://help.launchpad.net/ListHelp

Reply via email to