Comment #7 on issue 618 by pekka.klarck: Java long and Long parameters are
passed as BigInteger
http://code.google.com/p/robotframework/issues/detail?id=618
It's getting pretty sure that the underlying problem is in the JavaLibCore
and not in RF itself. We want to get RF 2.5.2 out on Friday but ought to
have time to investigate this more latest next week. Assuming the problem
really is in JavaLibCore, this issue needs to be moved to it's tracker at
http://code.google.com/p/robotframework-javatools/issues/list
Could you change the keyword so that it accepts strings and then converts
timeout and interval into integers internally? Then the keyword could also
be used like
| Wait Until Shell Closes | Shell | 5000 | 10 |
which is more clean than
| Wait Until Shell Closes | Shell | ${5000} | ${10} |