Skip to content

Commit 65a97a6

Browse files
committed
TestFX 4.0.13-alpha > 4.0.14-alpha
1 parent 9bb86f6 commit 65a97a6

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,12 +315,12 @@
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>

src/main/java/javafxlibrary/keywords/Keywords/KeyboardRobot.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
import org.robotframework.javalib.annotation.RobotKeywords;
2828
import org.testfx.api.FxRobot;
2929
import org.testfx.api.FxRobotInterface;
30-
import org.testfx.api.annotation.Unstable;
3130
import java.awt.*;
3231
import java.awt.datatransfer.Clipboard;
3332
import 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()) {

src/main/java/javafxlibrary/keywords/Keywords/MouseRobot.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import org.robotframework.javalib.annotation.RobotKeyword;
2626
import org.robotframework.javalib.annotation.RobotKeywords;
2727
import org.testfx.api.FxRobotInterface;
28-
import org.testfx.api.annotation.Unstable;
2928

3029
import java.util.Arrays;
3130

@@ -37,7 +36,6 @@ public class MouseRobot extends TestFxAdapter {
3736
+ "\nExample: \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
+ "\nExample: \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) + "\"");

0 commit comments

Comments
 (0)