Closed ghost closed 8 years ago
I haven't been updating the code generation part. I'll try to have it fixed this weekend. However, you can always replay the recorded action by pressing the play button after recording. Let me know if you have any problem with that.
I have the same issue, my guess is that the Generate Source button is generating code outside of action function and if referencing directly to controller functions (which are not statics) As a workaround, you can copy the generated code that looks like
controller.blockingWait(5);
controller.mouse().move(-1,1);
and, inside of action function, change it to
c.blockingWait(5);
c.mouse().move(-1,1);
here a working Example
would have used a pastebin, but the copy paste seems to crash somehow ; )
Thank you both for replying.
@hptruong93 No, I don't have problems with replaying recorded task. That is working very fine.
And yes thank you @azariel I will try that.
Fixed with 251834e4af598bb8a877871337e7ad05d27d7f22
I am trying to record a simple 3 seconds mouse moving task, but it is just not working. Steps to reproduce the problem:
My system: Ubuntu 16.04 LTS
Java version:
java -version java version "1.8.0_101" Java(TM) SE Runtime Environment (build 1.8.0_101-b13) Java HotSpot(TM) 64-Bit Server VM (build 25.101-b13, mixed mode)