├── .github └── workflows │ └── python-app.yml ├── .gitignore ├── Doc ├── SoapLibrary.html ├── SoapLibrary.xml ├── img2_SoapLibrary.png └── img_SoapUI.png ├── LICENSE.md ├── README.md ├── SoapLibrary ├── SoapLibrary.py ├── __init__.py ├── config.py └── version.py ├── Tests ├── Requests │ ├── New_Request.xml │ ├── New_Request_Calculator.xml │ ├── Request_Calculator.xml │ ├── Request_Calculator_500.xml │ ├── busca_servicos.xml │ ├── consultaCEP.xml │ ├── request.xml │ └── request_capital.xml └── keyword_tests.robot ├── dist ├── robotframework-soaplibrary-0.8.tar.gz ├── robotframework-soaplibrary-0.9.tar.gz ├── robotframework-soaplibrary-1.0.tar.gz ├── robotframework-soaplibrary-1.2.tar.gz ├── robotframework-soaplibrary-1.3.tar.gz └── robotframework_soaplibrary-1.4.tar.gz ├── examples ├── request │ ├── cep.xml │ └── ip.xml └── samples.robot ├── pyproject.toml ├── requirements.txt ├── robotframework_soaplibrary.egg-info ├── PKG-INFO ├── SOURCES.txt ├── dependency_links.txt ├── requires.txt └── top_level.txt └── setup.py /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /Doc/SoapLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Doc/SoapLibrary.html -------------------------------------------------------------------------------- /Doc/SoapLibrary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Doc/SoapLibrary.xml -------------------------------------------------------------------------------- /Doc/img2_SoapLibrary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Doc/img2_SoapLibrary.png -------------------------------------------------------------------------------- /Doc/img_SoapUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Doc/img_SoapUI.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/README.md -------------------------------------------------------------------------------- /SoapLibrary/SoapLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/SoapLibrary/SoapLibrary.py -------------------------------------------------------------------------------- /SoapLibrary/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/SoapLibrary/__init__.py -------------------------------------------------------------------------------- /SoapLibrary/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/SoapLibrary/config.py -------------------------------------------------------------------------------- /SoapLibrary/version.py: -------------------------------------------------------------------------------- 1 | VERSION = '1.4' 2 | -------------------------------------------------------------------------------- /Tests/Requests/New_Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/New_Request.xml -------------------------------------------------------------------------------- /Tests/Requests/New_Request_Calculator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/New_Request_Calculator.xml -------------------------------------------------------------------------------- /Tests/Requests/Request_Calculator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/Request_Calculator.xml -------------------------------------------------------------------------------- /Tests/Requests/Request_Calculator_500.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/Request_Calculator_500.xml -------------------------------------------------------------------------------- /Tests/Requests/busca_servicos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/busca_servicos.xml -------------------------------------------------------------------------------- /Tests/Requests/consultaCEP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/consultaCEP.xml -------------------------------------------------------------------------------- /Tests/Requests/request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/request.xml -------------------------------------------------------------------------------- /Tests/Requests/request_capital.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/Requests/request_capital.xml -------------------------------------------------------------------------------- /Tests/keyword_tests.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/Tests/keyword_tests.robot -------------------------------------------------------------------------------- /dist/robotframework-soaplibrary-0.8.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/dist/robotframework-soaplibrary-0.8.tar.gz -------------------------------------------------------------------------------- /dist/robotframework-soaplibrary-0.9.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/dist/robotframework-soaplibrary-0.9.tar.gz -------------------------------------------------------------------------------- /dist/robotframework-soaplibrary-1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/dist/robotframework-soaplibrary-1.0.tar.gz -------------------------------------------------------------------------------- /dist/robotframework-soaplibrary-1.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/dist/robotframework-soaplibrary-1.2.tar.gz -------------------------------------------------------------------------------- /dist/robotframework-soaplibrary-1.3.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/dist/robotframework-soaplibrary-1.3.tar.gz -------------------------------------------------------------------------------- /dist/robotframework_soaplibrary-1.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/dist/robotframework_soaplibrary-1.4.tar.gz -------------------------------------------------------------------------------- /examples/request/cep.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/examples/request/cep.xml -------------------------------------------------------------------------------- /examples/request/ip.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/examples/request/ip.xml -------------------------------------------------------------------------------- /examples/samples.robot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/examples/samples.robot -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/requirements.txt -------------------------------------------------------------------------------- /robotframework_soaplibrary.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/robotframework_soaplibrary.egg-info/PKG-INFO -------------------------------------------------------------------------------- /robotframework_soaplibrary.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/robotframework_soaplibrary.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /robotframework_soaplibrary.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /robotframework_soaplibrary.egg-info/requires.txt: -------------------------------------------------------------------------------- 1 | robotframework 2 | zeep 3 | requests 4 | urllib3 5 | setuptools 6 | -------------------------------------------------------------------------------- /robotframework_soaplibrary.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | SoapLibrary 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarketSquare/Robot-Framework-SOAP-Library/HEAD/setup.py --------------------------------------------------------------------------------