We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4cb559 commit 537a5c7Copy full SHA for 537a5c7
src/main/java/javafxlibrary/keywords/Keywords/ScreenCapturing.java
@@ -45,7 +45,10 @@
45
@RobotKeywords
46
public class ScreenCapturing extends TestFxAdapter {
47
48
- @RobotKeyword
+ @RobotKeyword("Sets whether to log images into the log.html file or not.\n\n"
49
+ + "Argument ``value`` is a string. Accepted values are \"on\" and \"off\". They can be given in uppercase as well. \n\n"
50
+ + "\nExample:\n"
51
+ + "| Set Image Logging | OFF |\n")
52
@ArgumentNames({ "value" })
53
public void setImageLogging(String value) {
54
if (value.toLowerCase().equals("on"))
0 commit comments