本文整理汇总了Python中mozrunner.Runner.create方法的典型用法代码示例。如果您正苦于以下问题:Python Runner.create方法的具体用法?Python Runner.create怎么用?Python Runner.create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mozrunner.Runner
的用法示例。
在下文中一共展示了Runner.create方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: start
# 需要导入模块: from mozrunner import Runner [as 别名]
# 或者: from mozrunner.Runner import create [as 别名]
def start(self):
profile = self.profile
if not profile:
prefs = {"marionette.defaultPrefs.enabled": True,
"marionette.defaultPrefs.port": 2828}
profile = {"preferences": prefs, "restore":False}
print "starting runner"
self.runner = Runner.create(binary=self.bin, profile_args=profile, cmdargs=['-no-remote'])
self.runner.start()
示例2: run
# 需要导入模块: from mozrunner import Runner [as 别名]
# 或者: from mozrunner.Runner import create [as 别名]
def run(self):
self.profile_dir = os.path.join(tempfile.mkdtemp(suffix='.gaiaunittest'),
'profile')
shutil.copytree(self.profile, self.profile_dir)
self.runner = Runner.create(binary=self.binary,
profile_args={'profile': self.profile_dir},
clean_profile=False,
cmdargs=['--runapp', 'Test Agent'])
self.runner.start()
示例3: run
# 需要导入模块: from mozrunner import Runner [as 别名]
# 或者: from mozrunner.Runner import create [as 别名]
def run(self):
self.profile_dir = os.path.join(tempfile.mkdtemp(suffix='.gaiaunittest'),
'profile')
shutil.copytree(self.profile, self.profile_dir)
cmdargs = ['--runapp', 'Test Agent']
if self.browser_arg:
cmdargs += list(self.browser_arg)
self.runner = Runner.create(binary=self.binary,
profile_args={'profile': self.profile_dir},
clean_profile=False,
cmdargs=cmdargs,
symbols_path=self.symbols_path)
self.runner.start()