You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

robotframework-csvlibrary

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

robotframework-csvlibrary

CSV library for Robot Framework

0.0.5
pipPyPI
Maintainers
1

Build Status Build Status

Robot Framework CSVLibrary

Introduction

CSVLibrary is a Robot Framework library for handling csv files.

More information about this library can be found in the Keyword Documentation.

Installation

Using pip

      pip install -U robotframework-csvlibrary

Manual installation

      python setup.py install

Example

Basic example:

*** Settings ***
Library                     Collections
Library                     CSVLibrary
    
*** Test Cases ***
Read csv file to a list example test
  @{list}=  read csv file to list  data.csv
  Log  ${list[0]}
  Log  ${list[1]}

Read csv file to a dict example test
  @{dict}=    read csv file to associative  data.csv
  Log  &{dict[0]}[first_name]  &{dict[0]}[last_name]

Keywords

robotframework testing csv

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts