@@ -5,14 +5,14 @@ class VisualLayoutTest(BaseCase):
5
5
6
6
def test_applitools_layout_change (self ):
7
7
self .open ('https://applitools.com/helloworld?diff1' )
8
- print ('\n Creating baseline in "visual_baseline" folder... ' )
8
+ print ('\n Creating baseline in "visual_baseline" folder.' )
9
9
self .check_window (name = "helloworld" , baseline = True )
10
10
self .click ('a[href="?diff1"]' )
11
- # Verify html tags match previous version
11
+ # Verify html tags match the baseline
12
12
self .check_window (name = "helloworld" , level = 1 )
13
- # Verify html tags and attribute names match previous version
13
+ # Verify html tags and attribute names match the baseline
14
14
self .check_window (name = "helloworld" , level = 2 )
15
- # Verify html tags and attribute values match previous version
15
+ # Verify html tags and attribute values match the baseline
16
16
self .check_window (name = "helloworld" , level = 3 )
17
17
# Change the page enough for a Level-3 comparison to fail
18
18
self .click ("button" )
@@ -21,6 +21,6 @@ def test_applitools_layout_change(self):
21
21
with self .assertRaises (Exception ):
22
22
self .check_window (name = "helloworld" , level = 3 )
23
23
# Now that we know the Exception was raised as expected,
24
- # let's print out the comparison results by running in Level-0.
24
+ # let's print out the comparison results by running a Level-0 check .
25
25
# (NOTE: Running with level-0 will print but NOT raise an Exception.)
26
26
self .check_window (name = "helloworld" , level = 0 )
0 commit comments