1234567891011121314151617 |
- # coding=utf-8
- from fastAutoTest.core.wx.wxEngine import WxDriver
- import os
- # 进入小程序
- if __name__ == '__main__':
- wxDriver = WxDriver()
- wxDriver.initDriver()
- # wxDriver.clickElementByXpath('/html/body/div[1]/div/div[3]/p')
- wxDriver.clickFirstElementByText('进入平台')
- wxDriver.returnLastPage()
- # wxDriver.returnLastPage()
- # 截图
- dirPath = os.path.split(os.path.realpath(__file__))[0]
- PIC_SRC = os.path.join(dirPath, '/screenshot/pic.png')
- wxDriver.d.screenshot(PIC_SRC)
- wxDriver.close()
|