启动(Launch)
为 desired capabilities 启动一个 session。请注意只有设置了 autoLaunch=false 关键字时才会生效。这不是为了随意启动一个应用或 activities ——如果你想这么做,请使用 start_activity 这个 desired capability 的参数。这个方法的使用场景是在你设置了 autoLaunch=false 后,用来继续执行初始化("launch")流程的。(译者注:举个例子,国产系统经常会在应用安装时弹出提示窗阻碍安装,此时可以通过 autoLaunch=false 来让应用安装后先执行你的脚本来关掉弹窗,然后再用这个函数来继续启动应用。)
# python
driver.launch_app()
重置
# python
driver.reset()
可用的上下文(Contexts)
列出所有可用的上下文(contexts)。
# python
driver.contexts
当前上下文(context)
列出当前的上下文(context)。
# python
driver.current_context
切换至默认的上下文(context)
切换回默认的上下文(context)。
# python
driver.switch_to.context(None)
领取专属 10元无门槛券
私享最新 技术干货