我们使用Perfecto测试我们的移动应用程序。在尝试捕获“移动”屏幕的屏幕截图的步骤中,我们的自动化代码正在生成异常。
我们尝试更改jar的版本。最初,我们有Selenium远程驱动程序2.48.2。我们将其更改为2.53.1,还更新了所有其他依赖的jar。使用2.48.2,我们继续获得浏览器无法访问的异常,而现在使用2.53.1,我们正在超时。我在版本2.48.2中附带了异常详细信息(带有示例代码段)。 2.53.1的例外有一些凭据细节,我不确定如何共享。
异常详细信息
org.openqa.selenium.remote.UnreachableBrowserException: Error communicating with the remote browser. It may have died.
Build info: version: '2.48.2', revision: '41bccdd10cf2c0560f637404c2d96164b67d9d67', time: '2015-10-09 13:08:06'
System info: host: 'WDAAS6302-E1087', ip: '10.86.78.84', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '1.8.0_172'
Driver info: driver.version: RemoteWebDriver
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:641)
at io.appium.java_client.DefaultGenericMobileDriver.execute(DefaultGenericMobileDriver.java:42)
at io.appium.java_client.AppiumDriver.execute(AppiumDriver.java:206)
at org.openqa.selenium.remote.RemoteWebDriver.getScreenshotAs(RemoteWebDriver.java:325)
at reusable.ReusableFuncs.capture(ReusableFuncs.java:167)
at automationFramework.Trial.main(Trial.java:160)
Caused by: java.lang.NullPointerException
at org.openqa.selenium.remote.ErrorCodes.toStatus(ErrorCodes.java:256)
at org.openqa.selenium.remote.JsonToBeanConverter.convert(JsonToBeanConverter.java:124)
at org.openqa.selenium.remote.JsonToBeanConverter.convert(JsonToBeanConverter.java:42)
at org.openqa.selenium.remote.http.JsonHttpResponseCodec.decode(JsonHttpResponseCodec.java:78)
at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:145)
at io.appium.java_client.remote.AppiumCommandExecutor.execute(AppiumCommandExecutor.java:67)
at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:620)
... 5 more
该步骤有例外- 文件源= ts.getScreenshotAs(OutputType.FILE);
移动自动化对我们来说还很陌生,我们发现很难解决该问题。
public synchronized String capture(AppiumDriver<MobileElement> driver,String screenShotName) throws IOException
{
TakesScreenshot ts = (TakesScreenshot)driver;
String dest = System.getProperty("user.dir") +"\\ErrorScreenshots\\"+screenShotName+new SimpleDateFormat("yyyyMMdd_HHmm").format(new Date())+".png";
System.out.println("destination is "+ dest);
File source = ts.getScreenshotAs(OutputType.FILE);
File destination = new File(dest);
FileUtils.copyFile(source, destination);
destination = null;
dest = resize(dest);
destination = new File(dest);
String encodedfile = null;
try {
FileInputStream fileInputStreamReader = new
FileInputStream(destination);
byte[] bytes = new byte[(int)destination.length()];
fileInputStreamReader.read(bytes);
encodedfile = Base64.getEncoder().encodeToString(bytes);
System.out.println(encodedfile);
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return "data:image/png;base64,"+ encodedfile;
}
答案 0 :(得分:0)
我向Perfecto支持团队提出了建议,他们建议增加一项新功能来消除超时。
interface IMyComponentProps<T> {
name: string
type: T
}
// instead of inline with component assignment
type MyComponentI<T = any> = React.FC<IMyComponentProps<T>>
const MyComponent: MyComponentI = props => <p {...props}>Hello</p>
const TypedComponent = MyComponent as MyComponentI<number>
现在有了2.53.1,并且有了这项新添加的功能,我们可以捕获屏幕截图。
答案 1 :(得分:0)
我认为您可以为您的移动自动化项目尝试Experitest SeeTest
它具有内置的报告机制,可以截图。根据您的情况,它支持AppiumDriver
。
您可以看看Experitest documentation
String screenshotPath = client.capture("CaptureScreenshot")
ScreenshotPath
将保存捕获的屏幕截图的路径