Example #1
0
 def click_country_name(self, **kwargs):
     self.find_element(*self._country_locator).click()
     from location_search_results import LocationSearchResults
     return LocationSearchResults(self.testsetup, **kwargs)
Example #2
0
 def click_profile_region_filter(self,):
     self.find_element(*self._region_locator).click()
     from location_search_results import LocationSearchResults
     return LocationSearchResults(self.selenium, self.base_url)
Example #3
0
 def click_profile_country_filter(self):
     self.selenium.find_element(*self._country_locator).click()
     from location_search_results import LocationSearchResults
     return LocationSearchResults(self.base_url, self.selenium)
Example #4
0
 def click_profile_country_filter(self):
     self.find_element(*self._country_locator).click()
     from location_search_results import LocationSearchResults
     return LocationSearchResults(self.testsetup)