appium中background app关键字怎么用
发布网友
发布时间:2022-05-06 19:02
我来回答
共1个回答
热心网友
时间:2022-07-01 20:45
首先看下background_app的定义,我拿python来举例:
webdriver中是这么定义的,就是把应用置于后台一段时间,
def background_app(self, seconds):
"""Puts the application in the background on the device for a certain
ration.
:Args:
- seconds - the ration for the application to remain in the background
"""
data = {
'seconds': seconds,
}
self.execute(Command.BACKGROUND, data)
return self
在实际的应用中,把时间作为参数传进来
self.driver.background_app('10')
这样app就会被置于后台10秒钟,之后再唤起到前台