/robotframework-pandas

Robot Framework pandas library

Primary LanguageMakefile

robotframework-pandas

🏠 PandasLibrary is a Robot Framework library aimed to provide support of pandas data analysis toolkit, wrapping Python Pandas Library.

Install pre-release version

pip install -i https://test.pypi.org/simple/ robotframework-pandas --pre

🤖 Quick start

*** 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

🤖 More examples

📖 Keywords documentation

Robotframework-pandas offers a wide set of keywords which can be found in the Keywords documentation

🔬 Test examples

You can find many test examples inside the tests folder.