layui刷新当前页面_UI自动化18heliumrefresh刷新页面

  • Post author:
  • Post category:其他


b14a451f7ddc1a053abe493fbeafe9b4.png


01 /


前言

helium提供方法refresh实现刷新当前页面


02 / 入参介绍

以下是源码中的函数介绍:

def refresh():  """  Refreshes the current page. If an alert dialog is open, then Helium first  closes it.  """  _get_api_impl().refresh_impl()


03 / 应用场景

代码:

from helium import *class UiWeb():    """公众号:helium自动化测试"""    def __init__(self, url):        self.url = url        self.driver = start_chrome(self.url)if __name__ == '__main__':    test = UiWeb('https://www.layui.com/demo/layim.html')    wait_until(Text("自定义会话").exists)  # 等待"自定义会话"出现    click("自定义会话")  # 点击"自定义会话"    refresh()  # 刷新当前页面刷新当前页面。 如果警报对话框打开,则helium优先关闭它