Jon Winsley
Jon Winsley
`os.mkdir()` isn't recursive, so if it tries to create a folder inside a folder which doesn't yet exist, it'll throw that error. Try using `os.makedirs()` instead to create all directories...
In my case this appears to be triggered by regenerator-runtime: https://github.com/facebook/regenerator/blob/master/packages/regenerator-runtime/runtime.js#L728 It's trying to define regeneratorRuntime in the global context, but is being prevented by "use strict", which doesn't allow...
If you're using `region.hover`, you'll need to use `region.click()`. Each region's recent matches are tracked separately.
Is BlueStacks running as root? Is Sikuli running as root?
Does this work? App('"C:/Program Files (x86)/Cisco/Cisco AnyConnect Secure Mobility Client/vpnui.exe"')
You should be able to use: t = App.open('"C:\\Program Files\\Internet Explorer\\iexplore.exe" http://my.URL.under.test/') I think the general rule is "if it works on the command line, it should work with App.open()"....
Try using `os.chdir()` to set the current directory before calling the executable. Haven't tested it, but I think that should work. If you use the App class to create your...
You could run Sikuli locally, on the VNC server, so that the client's image manipulation doesn't affect the script. As long as the host resolution itself doesn't change, client-side scaling...
Looks like you have an extra space before `wait(10)`. Is that just a copy-paste issue?
Are the null values handled correctly by graphite?