def password_input(self): return HtmlInputElement( self.web_element, By.xpath( './/div[@class="form-group" and label[@for="passwd"]]//input'), self)
def email_input(self): return HtmlInputElement( self.web_element, By.xpath( './/div[@class="form-group" and label[@for="email"]]/input'), self)
def search_section(self): return SearchSection(self.web_driver, By.xpath('//div[div/div[@class="row"]/div[@id="header_logo"]]'), self)
def women_button(self): return HtmlButtonElement( self.web_element, By.xpath('.//a[@class="sf-with-ul" and @title="Women"]'), self)
def t_shirts_button(self): return HtmlButtonElement( self.web_element, By.xpath('.//a[@class="sf-with-ul" and @title="T-shirts"]'), self)
def dresses_button(self): return HtmlButtonElement( self.web_element, By.xpath('.//a[@class="sf-with-ul" and @title="Dresses"]'), self)