Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CSCI40 Lab Activity 1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kevin Daniel Sibug
CSCI40 Lab Activity 1
Commits
ddbae0e2
Commit
ddbae0e2
authored
Mar 07, 2020
by
Kevin Sibug
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated the functional test to include all selections of heroes
parent
f6511dae
Pipeline
#873
failed with stages
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
1 deletion
+43
-1
lab1_functional_test.py
lab1_functional_test.py
+43
-1
No files found.
lab1_functional_test.py
View file @
ddbae0e2
...
@@ -55,10 +55,52 @@ class NewVisitorTest(unittest.TestCase):
...
@@ -55,10 +55,52 @@ class NewVisitorTest(unittest.TestCase):
back_to_heroes_list_button
.
click
()
back_to_heroes_list_button
.
click
()
self
.
assertEquals
(
'http://localhost:8000/heroes/'
,
self
.
browser
.
current_url
)
self
.
assertEquals
(
'http://localhost:8000/heroes/'
,
self
.
browser
.
current_url
)
# When she selects one of the heroes, she is sent to another page
# containing more information about the hero (additional stats, lore, image).
cloud_view
=
self
.
browser
.
find_element_by_id
(
'jester-view'
)
cloud_view
.
click
()
self
.
assertEquals
(
'http://localhost:8000/hero/jester/'
,
self
.
browser
.
current_url
)
list_of_attributes
=
self
.
browser
.
find_elements_by_tag_name
(
'dt'
)
self
.
assertIn
(
'Health Points'
,
list_of_attributes
[
0
]
.
text
)
self
.
assertIn
(
'Base Attack Damage'
,
list_of_attributes
[
1
]
.
text
)
self
.
assertIn
(
'Skills'
,
list_of_attributes
[
2
]
.
text
)
self
.
assertIn
(
'Lore'
,
list_of_attributes
[
3
]
.
text
)
# She spots the page title and header mentions the name of the hero she selected.
self
.
assertIn
(
'Detail - Jester'
,
self
.
browser
.
title
)
# While she is in a specific hero's page, she sees a button labeled "Back to Heroes List".
# She clicks this and she is redirected back to the wiki's homepage.
back_to_heroes_list_button
=
self
.
browser
.
find_element_by_tag_name
(
'button'
)
self
.
assertIn
(
'Back to Heroes List'
,
back_to_heroes_list_button
.
text
)
back_to_heroes_list_button
.
click
()
self
.
assertEquals
(
'http://localhost:8000/heroes/'
,
self
.
browser
.
current_url
)
# When she selects one of the heroes, she is sent to another page
# containing more information about the hero (additional stats, lore, image).
cloud_view
=
self
.
browser
.
find_element_by_id
(
'sunflowey-view'
)
cloud_view
.
click
()
self
.
assertEquals
(
'http://localhost:8000/hero/sunflowey/'
,
self
.
browser
.
current_url
)
list_of_attributes
=
self
.
browser
.
find_elements_by_tag_name
(
'dt'
)
self
.
assertIn
(
'Health Points'
,
list_of_attributes
[
0
]
.
text
)
self
.
assertIn
(
'Base Attack Damage'
,
list_of_attributes
[
1
]
.
text
)
self
.
assertIn
(
'Skills'
,
list_of_attributes
[
2
]
.
text
)
self
.
assertIn
(
'Lore'
,
list_of_attributes
[
3
]
.
text
)
# She spots the page title and header mentions the name of the hero she selected.
self
.
assertIn
(
'Detail - Sunflowey'
,
self
.
browser
.
title
)
# While she is in a specific hero's page, she sees a button labeled "Back to Heroes List".
# She clicks this and she is redirected back to the wiki's homepage.
back_to_heroes_list_button
=
self
.
browser
.
find_element_by_tag_name
(
'button'
)
self
.
assertIn
(
'Back to Heroes List'
,
back_to_heroes_list_button
.
text
)
back_to_heroes_list_button
.
click
()
self
.
assertEquals
(
'http://localhost:8000/heroes/'
,
self
.
browser
.
current_url
)
#time
#time
time
.
sleep
(
5
)
time
.
sleep
(
5
)
self
.
fail
(
'Finish the test!'
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
unittest
.
main
(
warnings
=
'ignore'
)
unittest
.
main
(
warnings
=
'ignore'
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment