Implement an ordered dictionary in Robot Framework
I want to have an ordered dictionary in Robot Framework. Is there any libraries which I can use for this purpose? How can I do that? I am not aware of any library that has a keyword to create an ordered dict, but creating an ordered dict is simple enough. As of Python 2.7, there is an ordered dictionary available from Python. Robot Framework also defines one that is available in Python/Jython versions prior to 2.7. The Robot Framework OrderedDict has more features than the Python one. Creating an ordered dict in Robot Framework would look like this: ${od} Evaluate collections.OrderedDict()