Testwizard for Web testobjects
Project description
Testwizard - Web
Python language support for testing websites, web-apps or webservices using testwizard
Usage
- Import the testwizard.test and the testwizard.web packages.
- Get a session and use it to create a web testobject.
- Use this object to execute commands.
- You can use the session to add results that will be reported to the robot when the script finishes or set results that will be posted immediately.
Sample script
Python (website.js)
from testwizard.test import TestWizard
from testwizard.test import ResultCodes
from testwizard.web import Web
with TestWizard() as TW:
session = TW.session
website = Web(session, "TestwizardWebsite")
print("startWebDriver")
result = website.startWebDriver()
print(result.message)
if not result.success:
session.addFail(result.message)
exit()
# Add your commands here
print("quitDriver")
result = website.quitDriver()
print(result.message)
if not result.success:
session.addFail(result.message)
if not (session.hasFails or session.hasErrors):
session.setResult(ResultCodes.PASS, "Test was successful")
sidecar file (website.json)
{
"resources": [
{
"category": "WEB",
"name": "TestwizardWebsite",
"id": "Testwizard web site"
}
]
}
Compatibility
The version is compatible with testwizard version 3.7
License
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
testwizard.web-3.7.0.tar.gz
(5.6 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file testwizard.web-3.7.0.tar.gz.
File metadata
- Download URL: testwizard.web-3.7.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
10f4f8a552344347d2a207ed1aac85577b7a71a659cf6b7c14b1743f3d087685
|
|
| MD5 |
4f0ed8cb63281ffe2a5bed7593b9d739
|
|
| BLAKE2b-256 |
22049e995aeb6ce4f965865f9fa6ab7126fb19bbbcfcf3254ea858f04d7306e2
|
File details
Details for the file testwizard.web-3.7.0-py3-none-any.whl.
File metadata
- Download URL: testwizard.web-3.7.0-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
73b313ef598554224a869986ea2baf2413d007529bfa0a9b6a57487bd0c93a65
|
|
| MD5 |
27ab04b3c427502112dcb236e85d372b
|
|
| BLAKE2b-256 |
be7f29c0c93d978f3f9aae7530236943c2de91e4cfb93adcbebd98b2dff7286e
|