Removed the save_html line

This commit is contained in:
JonahStanley
2013-05-31 09:16:14 -04:00
parent c27391ce8f
commit a49acc73ee
2 changed files with 0 additions and 2 deletions

View File

@@ -12,7 +12,6 @@ def i_click_on_view_courseware(step):
@step('I click on the "([^"]*)" tab$')
def i_click_on_the_tab(step, tab_text):
world.click_link(tab_text)
world.save_the_html()
@step('I visit the courseware URL$')

View File

@@ -8,5 +8,4 @@ def i_click_on_the_tab_and_check(step):
tab_text = tab_title['TabName']
title = tab_title['PageTitle']
world.click_link(tab_text)
world.save_the_html()
assert(title in world.browser.title)