Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 sikuli 和 java 用于基于 citrix 的 web 应用程序。我遇到了多个问题,但找不到文档
如何在 sikuli 的类似文本框中输入文本?是否有任何选项可以根据索引选择文本框?
选项 1- 在最后一场比赛中使用左/右/上/下功能。
find("image.png") m = getLastmatch().below().find("similar image1.png") m.right().click("image3.png")
选项2 在输入数据时尝试使用“选项卡”以避免依赖图像。例如
Type(Key.Tab) Type("username) Type(key.tab) Type("Password ")
希望这可以帮助