Hello,
This can currently be done only with Javascript.
That will not be feasible though, because the javascripts would become
a maintenance nightmare.
I have been thinking about this also earlier and actually created an
issue for it:
http://code.google.com/p/robotframework-seleniumlibrary/issues/detail?id=27
This will most likely implemented in next release of SeleniumLibrary,
although when that might be released is yet to be determined.
best regards,
__janne
Table related keywords are definitely needed. It might, however, be
easier to create custom keyword at least for complex tables. Verifying
all the rows and columns is so much more easy in Python code as using
the simple constructs that are available in the test data. Adding
custom keywords is pretty easy, you can start with something like
from SeleniumLibrary import SeleniumLibrary
class MySeleniumLibrary(SeleniumLibrary):
def my_special_keyword(self, arg1, arg2):
# do something ...
Cheers,
.peke