SOAP Library for Robot Framework
- Python 3.7 +
- Zeep 4.2.1 +
The SoapLibrary was created for those who want to use the Robot Framework as if they were using SoapUI, just send the request XML and get the response XML.
For the first time installation:
pip install robotframework-soaplibrary
Or you can upgrade with:
pip install --upgrade robotframework-soaplibrary
*** Settings ***
Library SoapLibrary
Library OperatingSystem
*** Test Cases ***
Example
Create Soap Client http://endpoint.com/example.asmx?wsdl
${response} Call SOAP Method With XML ${CURDIR}/request.xml
${text} Get Data From XML By Tag ${response} tag_name
Log ${text}
Save XML To File ${response} ${CURDIR} response_test
You can see here an example of how to use OPENSSL to access a webservice with TLS certificate. (Thanks Michael Hallik)
You can find the keywords documentation here
Initial development was sponsored by Capgemini Engineering
- Samuel Cabral
- Joao Gomes
This project is licensed under the MIT License - see the LICENSE.md file for details.