本文整理汇总了Python中context.Context.set_cache方法的典型用法代码示例。如果您正苦于以下问题:Python Context.set_cache方法的具体用法?Python Context.set_cache怎么用?Python Context.set_cache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类context.Context
的用法示例。
在下文中一共展示了Context.set_cache方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
# 需要导入模块: from context import Context [as 别名]
# 或者: from context.Context import set_cache [as 别名]
def __init__(self):
for base in Page.__bases__:
base.__init__(self)
self._robot_handler = RobotHandler(self)
self._option_handler = OptionHandler(self)
self._yaml_handler = YAMLHandler(self)
try:
self.name
except AttributeError:
self.name = self._titleize(self.__class__.__name__)
# Required Attributes in options ##
self.browser = self._option_handler.get("browser", None)
self.baseurl = self._option_handler.get("baseurl", None)
# Setting Up Optional Selenium2Library attributes with OptionHandler ##
selenium_speed = self._option_handler.get("selenium_speed", 0)
selenium_implicit_wait = self._option_handler.get("selenium_implicit_wait", 5)
self.set_selenium_timeout(selenium_implicit_wait)
self.set_selenium_implicit_wait(selenium_implicit_wait)
self.set_selenium_speed(selenium_speed)
_shared_cache = Context.get_cache()
if _shared_cache is not None:
self._cache = _shared_cache
Context.set_cache(self._cache)
if Context.in_robot():
Context.set_current_page("pageobjects.Page")
KeywordManager().add_page_methods(self)