Fakultas Ilmu Komputer UI
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
PMPL
Collection of Practice
2019
1606876052-practice
Commits
17c22818
Commit
17c22818
authored
Sep 17, 2019
by
Rayza Arasj Mahardhika
Browse files
add user story to functional_test
parent
28cdffa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
functional_test.py
View file @
17c22818
from
selenium
import
webdriver
browser
=
webdriver
.
Firefox
()
# Edith has heard about a cool new online to-do app. She goes
# to check out its homepage
browser
.
get
(
'http://localhost:8000'
)
assert
'Django'
in
browser
.
title
# She notices the page title and header meantion to-do lists
assert
'To-Do'
in
browser
.
title
# She is invited to enter a to-do item straight away
# She types "Buy peacock feathers" into a text box (Edhits' hobby
# is tying fly-fishing lures)
# When she hits enter, the page updates, and now the page lists
# "1: Buy peacock feathers" as an item in a to-do lists
# There is still a text box inviting he to add another item. She
# enters "Use peacock feathers to make a fly" (Edith is very methodical)
# The page updates again, and now shows both items on her list
# Edith wonders whether the site will remember her list. Then she sees
# that the site has generated a unique URL for her -- there is some
# explanatory text to that effect.
# She visits that URL - her to-do list is still there.
# Satisfied, she goes back to sleep
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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