wx.showModal组件,当前wx.showModal只有一个【确定】时,执行正常,当存在【确定】【取消】时,在自己的小程序和微信原生的demo使用self.native.handle_modal("确定") 均无响应!minium 1.0.2版本
def test_modal(self):
"""
操作原生modal实例
"""
paths = self.app.get_all_pages_path()
print(paths)
self.app.navigate_to("/packageAPI/pages/modal/modal")
self.page.get_element("button", inner_text="有标题的modal").click()
self.capture("有标题的modal")
self.native.handle_modal("确定")
self.page.get_element("button", inner_text="无标题的modal").click()
self.capture("无标题的modal")
self.native.handle_modal("确定")
老哥 问题解决了吗?