Skip to content

Commit 7fb3585

Browse files
committed
Update comments
1 parent a70d71e commit 7fb3585

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/boilerplates/samples/google_objects.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
'''
2-
Google.com page objects
3-
'''
1+
""" google.com page objects """
42

53

64
class HomePage(object):

examples/boilerplates/samples/google_test.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
'''
2-
Google.com testing example
3-
'''
1+
""" google.com example test that uses page objects """
42

53
from seleniumbase import BaseCase
64
from .google_objects import HomePage, ResultsPage

examples/boilerplates/samples/swag_labs_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
""" Example test that uses the Page Object Model """
2+
13
from seleniumbase import BaseCase
24

35

examples/boilerplates/samples/test_page_objects.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
""" Example test that uses the Page Object Model """
2+
13
from seleniumbase import BaseCase
24

35

0 commit comments

Comments
 (0)