4.2.0 Fixes and missing methods

Sept. 18, 2018, 12:39 p.m.

Version 4.2.0 released featuring mainly bugfixes and addition of small methods.

Note that we renamed the Image objects .pixelEqualityTo method to .pixelEquality. (We removed the “to”).

Check out the changelog below to see which methods have been added.

We decided to remove the Android, Browser and Deskop shortcut methods: findMatch, findMatches, findAndTap and findAndClick.
Sure they were handy, but they were not reliable enough and just doing things one can do with regular methods to.

The Desktop.findMatch methods, aswell as the other methods can be replaced with something along those lines.
We consider them better than the shortcut methods as the script writer has full control over whats happening and will be informed over any exception occuring.

var template = new Image("template.png");
var screenshot = Desktop.takeScreenshot();

var match = Vision.findMatch(template);
Desktop.leftClick(match.getRect().getCenter());

Changelog