-
Notifications
You must be signed in to change notification settings - Fork 55
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Recipe request: working with data stored in CSV or Excel #6
Comments
I'm not sure how it could work with Excel out of the box (apart from storing suite files in .tsv format which used to be supported, but isn't anymore - if I remember correctly). For CSV you'd probably have to implement basic python library that would expose the data, and yaml works more-or-less out of the box, provided your RF instance has pyyaml installed. I actually published an article on Robot Framework test parameterization, literally yesterday: https://wonderproxy.com/blog/parameterizing-robot-framework/ |
Thanks @AdamHepner, nice article. I was thinking an RF Library based on Python's openpyxl: https://openpyxl.readthedocs.io/en/stable/ There is also datadriver for data driven testing which works with Excel and other formats: https://pypi.org/project/robotframework-datadriver/ |
There's also this library based on pandas: |
@adrianyorke you do know that exact thing already exists right ;) ?
|
if we implemented pandas based robot framework library will be more advanced. |
A common use case is to import a list of values or test data from an external data file, e.g. CSV or Excel.
A recipe demonstrating how to do this would be useful for many test case scenarios.
The text was updated successfully, but these errors were encountered: