File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed
src/main/java/javafxlibrary/keywords/Keywords Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 315
315
<dependency >
316
316
<groupId >org.testfx</groupId >
317
317
<artifactId >testfx-core</artifactId >
318
- <version >4.0.13 -alpha</version >
318
+ <version >4.0.14 -alpha</version >
319
319
</dependency >
320
320
<dependency >
321
321
<groupId >org.testfx</groupId >
322
322
<artifactId >testfx-junit</artifactId >
323
- <version >4.0.13 -alpha</version >
323
+ <version >4.0.14 -alpha</version >
324
324
</dependency >
325
325
<dependency >
326
326
<groupId >org.testfx</groupId >
Original file line number Diff line number Diff line change 27
27
import org .robotframework .javalib .annotation .RobotKeywords ;
28
28
import org .testfx .api .FxRobot ;
29
29
import org .testfx .api .FxRobotInterface ;
30
- import org .testfx .api .annotation .Unstable ;
31
30
import java .awt .*;
32
31
import java .awt .datatransfer .Clipboard ;
33
32
import java .awt .datatransfer .StringSelection ;
@@ -65,7 +64,6 @@ public FxRobotInterface press(String... keys) {
65
64
+ "| Release | CONTROL | SHIFT | G | \n "
66
65
+ "Note: passing in an empty list will release all pressed keys.\n \n " )
67
66
@ ArgumentNames ({ "*keys" })
68
- @ Unstable (reason = "could be renamed to accept empty arrays" )
69
67
public FxRobotInterface release (String ... keys ) {
70
68
try {
71
69
RobotLog .info ("Releasing keys: " + Arrays .asList (keys ));
@@ -145,7 +143,6 @@ public FxRobotInterface eraseText(int amount) {
145
143
}
146
144
147
145
@ RobotKeyword ("Closes the current window, same as ALT + F4 in Windows \n \n " )
148
- @ Unstable (reason = "maybe extract this into a new class" )
149
146
public FxRobotInterface closeCurrentWindow () {
150
147
try {
151
148
if (isMac ()) {
Original file line number Diff line number Diff line change 25
25
import org .robotframework .javalib .annotation .RobotKeyword ;
26
26
import org .robotframework .javalib .annotation .RobotKeywords ;
27
27
import org .testfx .api .FxRobotInterface ;
28
- import org .testfx .api .annotation .Unstable ;
29
28
30
29
import java .util .Arrays ;
31
30
@@ -37,7 +36,6 @@ public class MouseRobot extends TestFxAdapter {
37
36
+ "\n Example: \n "
38
37
+ "| Press Mouse Button | PRIMARY | \n " )
39
38
@ ArgumentNames ({ "*buttons" })
40
- @ Unstable (reason = "could be renamed to accept empty arrays" )
41
39
public FxRobotInterface pressMouseButton (String ... buttons ) {
42
40
43
41
try {
@@ -55,7 +53,6 @@ public FxRobotInterface pressMouseButton(String... buttons) {
55
53
+ "\n Example: \n "
56
54
+ "| Release Mouse Button | SECONDARY | \n " )
57
55
@ ArgumentNames ({ "*buttons" })
58
- @ Unstable (reason = "could be renamed to accept empty arrays" )
59
56
public FxRobotInterface releaseMouseButton (String ... buttons ) {
60
57
try {
61
58
RobotLog .info ("Releasing mouse buttons: \" " + Arrays .asList (buttons ) + "\" " );
You can’t perform that action at this time.
0 commit comments