python package which helps to create many screenshots for selenium.webdriver
Project description
Table of Contents
Short Overview.
selenium_screenshots is a python package that helps to create many screenshots for selenium webdrivers.
Example
from selenium import webdriver from selenium_screenshots import make_screenshot # Please define here any webdriver which you would like to use E.G. driver = webdriver.Chrome() # When you would want to create a screenshot, just call make_screenshot(driver) make_screenshot(driver, "some_description") make_screenshot(driver, "characters_%%forbidden_in_the_..filename")
As the result you will get screenshots in the directory: ./screenshots/…
- 1.png
- 2_some_description.png
- 3_characters___forbidden_in_the___filename.png
If you run this code some other time then you’ll get 3 more screenshots:
- 1.png
- 2_some_description.png
- 3_characters___forbidden_in_the___filename.png
- 4.png
- 5_some_description.png
- 6_characters___forbidden_in_the___filename.png
As you can see user shouldn’t worry about screenshot’s numbers as they will be handled automatically.
Installation via pip:
pip install selenium_screenshots
Basic Usage
Full signature of selenium_screenshots.make_screenshot(…)
from selenium_screenshots import make_screenshot make_screenshot( webdriver, str_description="", str_path_dir_with_screenshots="screenshots", )
Arguments
- webdriver:
The only mandatary argument. Any selenium webdriver which to use for making of screenshot.
- str_description=””:
- Description of the screenshot to add to the screenshot filename.If in the screenshot description will be used symbols forbidden in the filenames they will be replaced on “_”.If filename of a new screenshot is longer than 50 symbols then it will be cut to 50.
- str_path_dir_with_screenshots=”screenshots”:
Path to the directory where you want to save a new screenshot
Advanced Usage
selenium_screenshots.Screenshots(…)
from selenium import webdriver from selenium_screenshots.main import Screenshots # Please define here any webdriver which you would like to use E.G. driver = webdriver.Chrome() screenshots_handler = Screenshots( webdriver, str_path_dir_with_screenshots="screenshots", int_screenshots_to_delete_half=9999, int_max_length_of_filename=50, )
Arguments
- webdriver:
The only mandatary argument. Any selenium webdriver which to use for making of screenshots.
- str_path_dir_with_screenshots=”screenshots”:
Path to directory where to save screenshots.
- int_screenshots_to_delete_half=9999:
Number of the screenshots in the directory when try to delete most old half
- int_max_length_of_filename=50:
- Max length of a new screenshot filename.If filename of a new screenshot is longer then filename will be cut.
Methods of screenshots_handler object
screenshots_handler.create_screenshot(…)
This method do exactly the same as selenium_screenshots.make_screenshot(…) in the Basic Usage
screenshots_handler.create_screenshot(str_description="")
- str_description=””:
- Description of the screenshot to add to the screenshot filename.If in the screenshot description is used symbols forbidden in the filenames they will be replaced on “_”.If filename of a new screenshot is longer than N symbols then it will be cut to N.
screenshots_handler.delete_all_screenshots(…)
screenshots_handler.delete_all_screenshots()
screenshots_handler.delete_not_unique_screenshots(…)
screenshots_handler.delete_not_unique_screenshots( is_to_delete_screenshots_without_description=False)
- is_to_delete_screenshots_without_description=False:
- Flag if to delete screenshots without description
How to create screenshot every time when you caught an Exception
from selenium_screenshots import make_screenshot try: # Some code which you would like to test except Exception as ex: make_screenshot(webdriver, str_description=str(ex)) raise
License
This project is licensed under the MIT License.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for selenium_screenshots-0.1.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b5cf6d2c278ff515f1a8a837326d9ea19813403890d74f9ef33f3dcfa6df843d |
|
MD5 | 6acdd66867374c9125e9ad3993d1b203 |
|
BLAKE2-256 | b424a1d4579d5e9a0c7d68591dfa5aec7b809a1126f3f6eabe6c5182ff63d558 |
Hashes for selenium_screenshots-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 202717ebdec0e652e8ee5d353431a4637374c00e558536b1090449ab070105a6 |
|
MD5 | 777c8f0b93894baf8b2dec18d39fafdf |
|
BLAKE2-256 | a537e635ba4c5c5eaff558421319cd363278b9c97ac021626dba288a4cb2406d |