May 5, 20169 yr https://gyazo.com/78bb75f9b5051977054cf58938eb5738 I've tried getWidgets().interact(465,24,50, "-5%"); and getWidgets().interact(465,24, "-5%"); Neither of them work. All my other widgets work except this one so I'm not sure what I'm doing wrong. My logs show that its working but its just not clicking on the box. text Edited May 8, 20169 yr by lg_juggles
May 5, 20169 yr Try getWidgets().get(465,24,10).interact(); or getWidgets().get(465,24,10).interact("-5%");
May 5, 20169 yr Author Try getWidgets().get(465,24,10).interact(); or getWidgets().get(465,24,10).interact("-5%"); Thanks that seemed to solve the issue!
May 5, 20169 yr I would do a null check before interacting with the widget, and use getWidgets#getWidgetContainingText(java.lang.String... texts) instead of static ids; if the widget contains any message of course.
Create an account or sign in to comment