Webdriver-test-tools

Latest version: v3.2.0

Safety actively analyzes 724004 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 5

2.10.1

Bumped minimum required version of [randomuser package](https://connordelacruz.com/python-randomuser/index.html) to 1.5.1, which implements hotfixes for a few issues.

2.10.0

Updated `setup.py` and `__main__.py` templates for test projects to allow commands to be run without `python -m` when installed. Also added brief documentation on using `virtualenv` with test projects.


Details

Project templates

* Added `main()` method to `__main__.py` template. Essentially just extracted the call to `test_module.main()` to a method to allow console script entry points
* Updated `setup.py` to include `console_scripts` entry point to new main method
* Updated `.gitignore` template to include `venv/` directory


Additional Comments

Since the command line entry point required changes to project templates, older projects won't support this by default. The following changes can be made to allow test projects to be called directly from the command line (replacing `<test_package>` with actual package name):

`setup.py`:

python
...
setup(
...
entry_points={
'console_scripts': [
'<test_package>=<test_package>.__main__:main',
]
},
...
)


`<test_package>/__main__.py`:

python
...
def main():
test_module.main(tests, config, __package__)

if __name__ == '__main__':
test_module.main(tests, config, __package__)
main()

2.9.2

Fixed missing page object template files when installing via PyPI

2.9.1

Bumped required version of `randomuser` package to 1.5.0

2.9.0

* Extracted common template items to `yaml_page.py.j2` and updated existing templates to extend it
* Made YAML parsing optional in supported prototype classes. Whether or not YAML parsing is used by default is configured in `<test_project>.config.projectfiles`. This default can be overridden by using the `--yaml` or `--no-yaml` arguments with the `new page` command
* Added support for YAML parsing to the `NavObject` prototype, merged functionality of `CollapsibleNavObject` into `NavObject`, and added a new structure for nav links
* Added YAML parsing support for `WebPageObject`

For details on internal changes, see the following pull requests:

* `WebPageObject` YAML support (46)
* YAML configs and command line arguments (47)
* `NavObject` YAML support (48)
* Cleanup (49)

2.8.1

Extracted common YAML parsing stuff from `FormObject` and `ModalObject` to abstract class `YAMLParsingPageObject`.

Details

* Added `pageobject.yaml` module with new `YAMLParsingPageObject` class
* `FormObject` and `ModalObject` now extend this class

Page 3 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.