JavalibCore
JavalibCore copied to clipboard
Base for implementing Java test libraries to be used with Robot Framework
Coming from https://github.com/robotframework/JavalibCore/issues/19 and [robotframework documentation](http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#free-keyword-arguments-kwargs) as java has no support for explicit kwarg variable, a single map passed on to robot keyword without `**` must also be considered as...
Hi, tested with Javalib-Core 2.0.3: Java-Library: ``` @RobotKeyword("Fügt eine neue Zeile mit den Werten der Liste ``values`` hinzu und gibt ihre y-Koordinate zurück.\r\n" + "\r\n" + "Beispiel:\r\n" + "| @{row}=...
@Hi-Fi as discussed on https://github.com/robotframework/JavalibCore/issues/19 here is the PR
In RF documentation (http://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#free-keyword-arguments-kwargs) it's mentioned that kwargs could be used in Java libraries by adding Map -kind of argument to method. In Javalib-core there's internal handling, that converts those...
Summary: https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#summary Tested at https://github.com/robotframework/robotframework/blob/5e284636a777612d95971060e2da1af4f5f74b3c/atest/testdata/keywords/type_conversion/Dynamic.py
In an older version of Robotframework that my company was previously using, we were able to pass ${None} in to Java keywords, and the keyword would get null. After upgrading...
Current implementation of javalib core excutes keywords using "Run Keyword" -keyword, which prevents created keywords to act as listeners. Would it be possible to implement somehow support to javalib-core for...