Public bug reported:

I use Sikuli API on JAVA to test app on MAC and I face a problem Sikuli
doesn't drag and drop control (Sikuli only move from imageA to image B)

Here is my script:

import org.testng.annotations.Test;
import org.sikuli.script.Screen;
import org.sikuli.script.Match;


public class test {
       @Test
        public void testcase(){
                Screen s = new Screen();
                Match src = s.find( "\ws\imageA.png");
                Match des= s.find("\ws\imageB.png");
                s.dragDrop(src, des);
       }

Note: It's work fine on win but on MAC OSX, I just saw mouse move from
imageA to imageB.

Please let me know if anyone has resolved this issue.

** Affects: sikuli
     Importance: Undecided
         Status: New

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

Title:
  Sikuli 1.1 doesn't drag and drop control on MAC OSX

Status in Sikuli:
  New

Bug description:
  I use Sikuli API on JAVA to test app on MAC and I face a problem
  Sikuli doesn't drag and drop control (Sikuli only move from imageA to
  image B)

  Here is my script:

  import org.testng.annotations.Test;
  import org.sikuli.script.Screen;
  import org.sikuli.script.Match;

  
  public class test {
         @Test
        public void testcase(){
                Screen s = new Screen();
                Match src = s.find( "\ws\imageA.png");
                Match des= s.find("\ws\imageB.png");
                s.dragDrop(src, des);
         }

  Note: It's work fine on win but on MAC OSX, I just saw mouse move from
  imageA to imageB.

  Please let me know if anyone has resolved this issue.

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

_______________________________________________
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