Appium IOS 下如何截图保存呢?求高手指导
有截图方法, python 的 get_screenshot_as_png()
self.driver.get_screenshot_as_file(TEMP_FILE) 用了这个,多谢
java 版: File Screenshot= ((RemoteWebDriver) driver).getScreenshotAs(OutputType.FILE); FileUtils.copyFile(Screenshot, new File(fileFullName));