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 315315 <dependency >
316316 <groupId >org.testfx</groupId >
317317 <artifactId >testfx-core</artifactId >
318- <version >4.0.13 -alpha</version >
318+ <version >4.0.14 -alpha</version >
319319 </dependency >
320320 <dependency >
321321 <groupId >org.testfx</groupId >
322322 <artifactId >testfx-junit</artifactId >
323- <version >4.0.13 -alpha</version >
323+ <version >4.0.14 -alpha</version >
324324 </dependency >
325325 <dependency >
326326 <groupId >org.testfx</groupId >
Original file line number Diff line number Diff line change 2727import org .robotframework .javalib .annotation .RobotKeywords ;
2828import org .testfx .api .FxRobot ;
2929import org .testfx .api .FxRobotInterface ;
30- import org .testfx .api .annotation .Unstable ;
3130import java .awt .*;
3231import java .awt .datatransfer .Clipboard ;
3332import java .awt .datatransfer .StringSelection ;
@@ -65,7 +64,6 @@ public FxRobotInterface press(String... keys) {
6564 + "| Release | CONTROL | SHIFT | G | \n "
6665 + "Note: passing in an empty list will release all pressed keys.\n \n " )
6766 @ ArgumentNames ({ "*keys" })
68- @ Unstable (reason = "could be renamed to accept empty arrays" )
6967 public FxRobotInterface release (String ... keys ) {
7068 try {
7169 RobotLog .info ("Releasing keys: " + Arrays .asList (keys ));
@@ -145,7 +143,6 @@ public FxRobotInterface eraseText(int amount) {
145143 }
146144
147145 @ RobotKeyword ("Closes the current window, same as ALT + F4 in Windows \n \n " )
148- @ Unstable (reason = "maybe extract this into a new class" )
149146 public FxRobotInterface closeCurrentWindow () {
150147 try {
151148 if (isMac ()) {
Original file line number Diff line number Diff line change 2525import org .robotframework .javalib .annotation .RobotKeyword ;
2626import org .robotframework .javalib .annotation .RobotKeywords ;
2727import org .testfx .api .FxRobotInterface ;
28- import org .testfx .api .annotation .Unstable ;
2928
3029import java .util .Arrays ;
3130
@@ -37,7 +36,6 @@ public class MouseRobot extends TestFxAdapter {
3736 + "\n Example: \n "
3837 + "| Press Mouse Button | PRIMARY | \n " )
3938 @ ArgumentNames ({ "*buttons" })
40- @ Unstable (reason = "could be renamed to accept empty arrays" )
4139 public FxRobotInterface pressMouseButton (String ... buttons ) {
4240
4341 try {
@@ -55,7 +53,6 @@ public FxRobotInterface pressMouseButton(String... buttons) {
5553 + "\n Example: \n "
5654 + "| Release Mouse Button | SECONDARY | \n " )
5755 @ ArgumentNames ({ "*buttons" })
58- @ Unstable (reason = "could be renamed to accept empty arrays" )
5956 public FxRobotInterface releaseMouseButton (String ... buttons ) {
6057 try {
6158 RobotLog .info ("Releasing mouse buttons: \" " + Arrays .asList (buttons ) + "\" " );
You can’t perform that action at this time.
0 commit comments