robotframework-SikuliLibrary icon indicating copy to clipboard operation
robotframework-SikuliLibrary copied to clipboard

Seems `Change Screen ID 1` doesn't work

Open dschiller opened this issue 3 years ago • 0 comments

The following code doesn't work if the Unlink.png is on the second screen.

*** Settings ***
Library  SikuliLibrary
Suite Setup  Setup
Suite Teardown  Teardown

*** Test Cases ***
Click Unlink
  # ${id}  Get current Screen ID
  # Log to Console  ${id}
  Change Screen ID  1
  # ${id}  Get current Screen ID
  # Log to Console  ${id}
  Click  Confluence/Unlink

*** Keywords ***
Setup
  Add Image Path  Tests/Data/UIAutomationImages
Teardown
  Stop Remote Server

dschiller avatar May 17 '21 10:05 dschiller