Juggles Posted May 5, 2016 Share Posted May 5, 2016 (edited) 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, 2016 by lg_juggles Quote Link to comment Share on other sites More sharing options...
Lordsthan Posted May 5, 2016 Share Posted May 5, 2016 Try getWidgets().get(465,24,10).interact(); or getWidgets().get(465,24,10).interact("-5%"); Quote Link to comment Share on other sites More sharing options...
Juggles Posted May 5, 2016 Author Share Posted May 5, 2016 Try getWidgets().get(465,24,10).interact(); or getWidgets().get(465,24,10).interact("-5%"); Thanks that seemed to solve the issue! Quote Link to comment Share on other sites More sharing options...
Woody Posted May 5, 2016 Share Posted May 5, 2016 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. Quote Link to comment Share on other sites More sharing options...