-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathtest_image_saving.py
83 lines (77 loc) · 3.36 KB
/
test_image_saving.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
""" Image-saving with "save_element_as_image_file()".
Also shown are ways of ordering tests. (Currently commented out)
For ordering tests, add the marker "@pytest.mark.run(order=NUM)"
before a test definition or class definition.
This changes the global test order when running "pytest".
Eg: If you want a test to always run first before any test
from all discovered files, add "@pytest.mark.run(order=0)".
For local class/module test-ordering, name your tests
using alphabetical order to set the order desired.
Eg: "def test_AAAAA" will run before "def test_ZZZZZ".
You can also add in numbers to force a specific order.
Eg: "def test_1_ZZZ" will run before "def test_2_AAA".
"""
import os
# import pytest # For ordering tests globally with @pytest.mark.run()
from seleniumbase import BaseCase
BaseCase.main(__name__, __file__)
class ImageTests(BaseCase):
# @pytest.mark.run(order=1)
def test_1_save_element_as_image_file(self):
"""Pull an image from a website and save it as a PNG file."""
self.open("https://xkcd.com/1117/")
selector = "#comic"
file_name = "comic.png"
folder = "images_exported"
self.save_element_as_image_file(selector, file_name, folder)
file_path = os.path.join(folder, file_name)
self.assert_true(os.path.exists(file_path))
print('\n"%s" was saved!' % file_path)
# @pytest.mark.run(order=2)
def test_2_add_text_overlay_to_image(self):
"""Add a text overlay to an image."""
self.open("https://xkcd.com/1117/")
selector = "#comic"
file_name = "image_overlay.png"
folder = "images_exported"
overlay_text = 'This is an XKCD comic!\nTitle: "My Sky"'
self.save_element_as_image_file(
selector, file_name, folder, overlay_text
)
file_path = os.path.join(folder, file_name)
self.assert_true(os.path.exists(file_path))
print('\n"%s" was saved!' % file_path)
# @pytest.mark.run(order=3)
def test_3_add_text_overlay_to_page_section(self):
"""Add a text overlay to a section of a page."""
self.open("https://xkcd.com/2200/")
selector = "#middleContainer"
file_name = "section_overlay.png"
folder = "images_exported"
overlay_text = (
"Welcome to %s\n"
"This is a comment added to the image.\n"
"Unreachable states come from logic errors."
% self.get_current_url()
)
self.save_element_as_image_file(
selector, file_name, folder, overlay_text
)
file_path = os.path.join(folder, file_name)
self.assert_true(os.path.exists(file_path))
print('\n"%s" was saved!' % file_path)
# @pytest.mark.run(order=4)
def test_4_add_text_overlay_to_full_page(self):
"""Add a text overlay to a full page."""
self.open("https://xkcd.com/1922/")
self.remove_element("#bottom")
selector = "body"
file_name = "page_overlay.png"
folder = "images_exported"
overlay_text = "A text overlay on %s" % self.get_current_url()
self.save_element_as_image_file(
selector, file_name, folder, overlay_text
)
file_path = os.path.join(folder, file_name)
self.assert_true(os.path.exists(file_path))
print('\n"%s" was saved!' % file_path)