February 2019
Intermediate to advanced
256 pages
7h 34m
English
The following is a Robot Framework sample script to do DDT testing that reads the data from sqli.csv and tests against userName and password parameters of the NodeGoat website. Please be reminded that the Robot Framework itself can't do sophisticated security analysis based on the HTTP response. Therefore, it's suggested to run OWASP ZAP as a proxy between the Robot Framework and the target testing website. The sample script is as follows:
*** Settings ***Library CollectionsLibrary CSVLibraryLibrary SeleniumLibraryLibrary OperatingSystemLibrary StringLibrary Collections*** Test Cases ***SignIn_DDT Open Browser http://nodegoat.herokuapp.com/login @{data}= read csv file to list sqli.csv Log ${data} ...Read now
Unlock full access