Format of google_search page object is not 100% correct thus it is not possible to use some of utility methods like e.g. is_element_present, etc.
class GoogleSearch(Page):
""" WorkspacesOverview page object """
def __init__(self, driver):
Page.__init__(self, driver)
self.driver = driver
@property
def search_field(self):
return self.driver.find_element(By.ID, 'lst-ib')
@property
def luck(self):
return self.driver.find_element(By.NAME, 'btnI')
Correct format:
class GoogleSearch(Page):
""" WorkspacesOverview page object """
def __init__(self, driver):
Page.__init__(self, driver)
self.driver = driver
self._search_field = (By.ID, "lst-ib")
self. _luck = (By.NAME, "btnl")
@property
def search_field(self):
return self.driver.find_element(*self._search_field)
@property
def luck(self):
return self.driver.find_element(*self._luck)
Recommend Projects
-
-
A declarative, efficient, and flexible JavaScript library for building user interfaces.
-
๐ Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.
-
TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
-
An Open Source Machine Learning Framework for Everyone
-
The Web framework for perfectionists with deadlines.
-
A PHP framework for web artisans
-
Bring data to life with SVG, Canvas and HTML. ๐๐๐
-
Recommend Topics
-
JavaScript (JS) is a lightweight interpreted programming language with first-class functions.
-
Some thing interesting about web. New door for the world.
-
A server is a program made to process requests and deliver data to clients.
-
Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.
-
Some thing interesting about visualization, use data art
-
Some thing interesting about game, make everyone happy.
-
Recommend Org
-
We are working to build community through open source technology. NB: members must have two-factor auth.
-
Open source projects and samples from Microsoft.
-
Google โค๏ธ Open Source for everyone.
-
Alibaba Open Source for everyone
-
Data-Driven Documents codes.
-
China tencent open source team.
-
Jobs
Jooble