0

I am using sikuli and java for a citrix based webapplication. I am running in to multiple issues and not able to find documentation

How do i enter text in similar textboxs in sikuli ? is there any option to choose textbox based on index ?

testerBDD
  • 255
  • 3
  • 18

1 Answers1

0

Option 1- to use left/right/above/below functions with the last match.

find("image.png")
m = getLastmatch().below().find("similar image1.png")
m.right().click("image3.png")

Option 2 Try to use" tab" while inputting data to avoid relying on images . For example

Type(Key.Tab)
Type("username)
Type(key.tab)
Type("Password ")

Hope this helps

Amruta
  • 1,128
  • 1
  • 9
  • 19