You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In KeywordOverload.java while collecting arguments args is not null with one non empty map but kwargs are null. However the case should be exactly opposite
The text was updated successfully, but these errors were encountered:
shan-96
changed the title
jrobotremoteserver should consider argument as kwarg when only a single map is passed to keyword instead on considering it as normal arg
jrobotremoteserver should consider argument as kwarg when only a single map is passed to keyword instead of considering it as normal arg
Feb 3, 2020
Hmmm... I would say no according linked documentation:
If a Java keyword accepts kwargs, Robot Framework will automatically pack all arguments in name=value syntax at the end of the keyword call into a Map and pass it to the keyword
Coming from robotframework/JavalibCore#19 and robotframework documentation as java has no support for explicit kwarg variable, a single map passed on to robot keyword without
**
must also be considered as kwarg.In
KeywordOverload.java
while collecting argumentsargs
is not null with one non empty map butkwargs
are null. However the case should be exactly oppositeThe text was updated successfully, but these errors were encountered: