Commit 5b519bdb authored by Alysha Columbres's avatar Alysha Columbres

added id tags for all heroes and edited names

parent 08848fc5
......@@ -4,13 +4,13 @@
<title>Detail - Cloud</title>
</head>
<body>
<img src="./cloud.png" style="width: 10vw;" />
<img id='image' src="./cloud.png" style="width: 10vw;" />
<h1>Detail - Cloud</h1>
<dl>
<dt>Health Points</dt><dd>600</dd>
<dt>Base Attack Damage</dt><dd>57</dd>
<dt>Skills</dt><dd>Nimbus, Rain Cloud, Thunderbolt</dd>
<dt>Lore</dt><dd>I am a cloud. When I pee you call it 'rain'.</dd>
<dt id='health'>Health Points</dt><dd>600</dd>
<dt id='attack'>Base Attack Damage</dt><dd>57</dd>
<dt id='skills'>Skills</dt><dd>Nimbus, Rain Cloud, Thunderbolt</dd>
<dt id='lore'>Lore</dt><dd>I am a cloud. When I pee you call it 'rain'.</dd>
</dl>
</body>
</html>
\ No newline at end of file
......@@ -4,13 +4,13 @@
<title>Detail - Jester</title>
</head>
<body>
<img src="./jester.png" style="width: 10vw;"/>
<img id='image' src="./jester.png" style="width: 10vw;"/>
<h1>Detail - Jester</h1>
<dl>
<dt>Health Points</dt><dd>660</dd>
<dt>Base Attack Damage</dt><dd>64</dd>
<dt>Skills</dt><dd>Laugh, Dance, Smile</dd>
<dt>Lore</dt><dd>I do it for the LOLs.</dd>
<dt id='health'>Health Points</dt><dd>660</dd>
<dt id='attack'>Base Attack Damage</dt><dd>64</dd>
<dt id='skills'>Skills</dt><dd>Laugh, Dance, Smile</dd>
<dt id='lore'>Lore</dt><dd>I do it for the LOLs.</dd>
</dl>
</body>
</html>
\ No newline at end of file
......@@ -4,13 +4,13 @@
<title>Detail - Sunflowey</title>
</head>
<body>
<img src="./sunflowey.png" style="width: 10vw;" />
<img id='image' src="./sunflowey.png" style="width: 10vw;" />
<h1>Detail - Sunflowey</h1>
<dl>
<dt>Health Points</dt><dd>650</dd>
<dt>Base Attack Damage</dt><dd>43</dd>
<dt>Skills</dt><dd>Power Pellet, Sunshine, Pollen Punch</dd>
<dt>Lore</dt><dd>I am Sunflowey. Sometimes a sun, sometimes a flower.</dd>
<dt id='health'>Health Points</dt><dd>650</dd>
<dt id='attack'>Base Attack Damage</dt><dd>43</dd>
<dt id='skills'>Skills</dt><dd>Power Pellet, Sunshine, Pollen Punch</dd>
<dt id='lore'>Lore</dt><dd>I am Sunflowey. Sometimes a sun, sometimes a flower.</dd>
</dl>
</body>
</html>
\ No newline at end of file
......@@ -12,7 +12,7 @@ class NewVisitorTest(unittest.TestCase):
def test_can_display_a_heroes_list_and_more_information_per_hero(self):
# Widget has heard about a new wiki app for the game called The Will of the Wisps.
# She goes to check out its homepage
self.browser.get('http://localhost:8000')
self.browser.get('http://localhost:8000/heroes')
# She notices the page title and header mention
# 'The Will of the Wisps Wiki'
......@@ -20,22 +20,22 @@ class NewVisitorTest(unittest.TestCase):
# She sees a list containing three heroes with their corresponding
# names, health points, and damage
seld.assertIn(self.browser.current_url,
self.assertIn(self.browser.current_url,
'http://localhost:8000/heroes')
# When she selects one of the heroes, she is sent to another page
# containing more information about the hero (additional stats, lore, image).
self.browser.get('http://localhost:8000/hero/cloud')
self.assertIn('Health Points', self.browser.find_element_by_id('hero_health').text)
self.assertIn('Health Points', self.browser.find_element_by_id('health').text)
self.assertIn('Base Attack Damage', self.browser.find_element_by_id('hero_attack').text)
self.assertIn('Base Attack Damage', self.browser.find_element_by_id('attack').text)
self.assertIn('Skills', self.browser.find_element_by_id('hero_skills').text)
self.assertIn('Skills', self.browser.find_element_by_id('skills').text)
self.assertIn('Lore', self.browser.find_element_by_id('hero_lore').text)
self.assertIn('Lore', self.browser.find_element_by_id('lore').text)
self.assertIn('.png', self.browser.find_element_by_id('hero_image').get_attribute('src'))
self.assertIn('.png', self.browser.find_element_by_id('image').get_attribute('src'))
# She spots the page title and header mentions the name of the hero she selected.
self.assertIn('Detail - ', self.browser.title)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment