문제

Using this script in the Sikuli IDE to run through a form. How do I use the shift and tab keys together to go back to previous fields?

type("w" + Key.TAB
    + "6378678&*(^%" + Key.TAB
    + "w" + Key.TAB
    + "6378678&*(^%" + Key.TAB
    + "w" + Key.TAB
    + "6378678&*(^%" + Key.TAB
    + "w" + Key.TAB
    + "6378678&*(^%" + Key.TAB
    + "w" + Key.TAB
    + "6378678&*(^%" + Key.TAB)
도움이 되었습니까?

해결책

Not sure what all these symbols you have included, but try:

type(Key.TAB, KeyModifier.SHIFT)
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top