如何使用Sikuli右键单击

时间:2018-06-15 14:00:17

标签: sikuli

我的自动化正在运行,但是这部分脚本无法正常工作,我应该正确地找到鼠标所在的位置。页面是silverlight,快捷键如shift + f10不起作用。最好的选择是使用它。但是这段代码不起作用。我试过rightclick(atMouse))不工作....它甚至不识别rightclick()

s.mouseMove("C:\\tvmtrends\\images_tvm\\313.png");
rightclick();                     

  if(s.exists("C:\\tvmtrends\\images_tvm\\313.png") != null) {
   Thread.sleep(3000);
 s.click("C:\\tvmtrends\\images_tvm\\313.png");

1 个答案:

答案 0 :(得分:0)

我现在想出来了:

s.mouseMove("C:\\tvmtrends\\images_tvm\\313.png");
                              Thread.sleep(1000);
                              s.mouseDown(Button.RIGHT);
                              Thread.sleep(1000);
                              s.mouseUp(Button.RIGHT);
                              Thread.sleep(1000);                    

  if(s.exists("C:\\tvmtrends\\images_tvm\\313.png") != null) {
   Thread.sleep(3000);
 s.click("C:\\tvmtrends\\images_tvm\\313.png");