from appium.webdriver.mobilecommand import MobileCommand
def switch_h5(self):
self.driver.execute(MobileCommand.SWITCH_TO_CONTEXT, {"name": 你的h5的content})
查询content的方法是这个:
print driver.contexts
返回的数组中除了‘NATIVE_APP’的那个就是你的H5会话,然后你怎么操作web,就怎么操作这个H5
from appium.webdriver.mobilecommand import MobileCommand
def switch_h5(self):
self.driver.execute(MobileCommand.SWITCH_TO_CONTEXT, {"name": 你的h5的content})
查询content的方法是这个:
print driver.contexts
返回的数组中除了‘NATIVE_APP’的那个就是你的H5会话,然后你怎么操作web,就怎么操作这个H5