🏠 PandasLibrary
is a Robot Framework library
aimed to provide support of pandas data analysis toolkit,
wrapping Python Pandas Library.
pip install -i https://test.pypi.org/simple/ robotframework-pandas --pre
*** Settings ***
Library PandasLibrary
*** Test Cases ***
Test Series
${l} Create List ${1} ${2} ${3}
${s} Convert To Series ${l}
Should Be Equal As Integers ${s.sum()} 6
Robotframework-pandas offers a wide set of keywords which can be found in the Keywords documentation
You can find many test examples inside the tests folder.