Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
thegoodplace
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
Kirby Ezekiel Santos
thegoodplace
Commits
b7faf601
Commit
b7faf601
authored
Mar 18, 2020
by
Kirby Ezekiel Santos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a logic error in functional_test.py
parent
ee736cef
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
33 deletions
+33
-33
functional_test.py
functional_test.py
+33
-33
No files found.
functional_test.py
View file @
b7faf601
...
...
@@ -62,15 +62,6 @@ class NewVisitorTest(unittest.TestCase):
"Ingredients - Detail"
)
#Find and click back button to igredients list
back_button_to_ingredients_list_from_detail
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_ingredients_list_from_detail
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/ingredients-list"
,
self
.
browser
.
current_url
)
#Find and click button to ingredients update
button_to_ingredients_update
=
self
.
browser
.
find_element_by_id
(
"button_to_ingredients_update"
)
button_to_ingredients_update
.
click
()
...
...
@@ -88,9 +79,18 @@ class NewVisitorTest(unittest.TestCase):
"Ingredients - Update"
)
#Find and click back button to igredients detail
back_button_to_ingredients_detail_from_update
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_ingredients_detail_from_update
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/ingredients-detail"
,
self
.
browser
.
current_url
)
#Find and click back button to igredients list
back_button_to_ingredients_list_from_
update
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_ingredients_list_from_
update
.
click
()
back_button_to_ingredients_list_from_
detail
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_ingredients_list_from_
detail
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/ingredients-list"
,
...
...
@@ -173,15 +173,6 @@ class NewVisitorTest(unittest.TestCase):
"Recipes - Detail"
)
#Find and click back button to recipes list
back_button_to_recipes_list_from_detail
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_recipes_list_from_detail
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/recipes-list"
,
self
.
browser
.
current_url
)
#Find and click button to recipes update
button_to_recipes_update
=
self
.
browser
.
find_element_by_id
(
"button_to_recipes_update"
)
button_to_recipes_update
.
click
()
...
...
@@ -199,9 +190,18 @@ class NewVisitorTest(unittest.TestCase):
"Recipes - Update"
)
#Find and click back button to recipes detail
back_button_to_recipes_detail_from_update
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_recipes_detail_from_update
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/recipes-detail"
,
self
.
browser
.
current_url
)
#Find and click back button to recipes list
back_button_to_recipes_list_from_
update
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_recipes_list_from_
update
.
click
()
back_button_to_recipes_list_from_
detail
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_recipes_list_from_
detail
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/recipes-list"
,
...
...
@@ -284,15 +284,6 @@ class NewVisitorTest(unittest.TestCase):
"Orders - Detail"
)
#Find and click back button to orders list
back_button_to_orders_list_from_detail
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_orders_list_from_detail
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/orders-list"
,
self
.
browser
.
current_url
)
#Find and click button to orders update
button_to_orders_update
=
self
.
browser
.
find_element_by_id
(
"button_to_orders_update"
)
button_to_orders_update
.
click
()
...
...
@@ -310,9 +301,18 @@ class NewVisitorTest(unittest.TestCase):
"Orders - Update"
)
#Find and click back button to orders detail
back_button_to_orders_detail_from_update
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_orders_detail_from_update
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/orders-list"
,
self
.
browser
.
current_url
)
#Find and click back button to orders list
back_button_to_orders_list_from_
update
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_orders_list_from_
update
.
click
()
back_button_to_orders_list_from_
detail
=
self
.
browser
.
find_element_by_id
(
"back_button"
)
back_button_to_orders_list_from_
detail
.
click
()
time
.
sleep
(
1
)
self
.
assertEqual
(
"http://localhost:8000/orders-list"
,
...
...
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