new backend ecrans (closes #591)

This commit is contained in:
Juke 2011-03-25 23:31:43 +01:00
commit 4515541639
11 changed files with 364 additions and 1 deletions

View file

@ -101,7 +101,11 @@ class GenericNewsPage(BasePage):
else:
raise
except SelectElementException:
raise NoTitleException("no title on %s" % (self.browser))
try :
self.element_title_selector = "h1"
return self.get_title()
except SelectElementException:
raise NoTitleException("no title on %s" % (self.browser))
def get_element_body(self):
try :