Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
169 views
in Technique[技术] by (71.8m points)

java - Appium - I'm getting null message while taking screenshot

I'm new to automation. I'm getting null message while taking screenshot.

TestNG listener code

@Override
public void onTestFailure(ITestResult arg0) {
    //write screenshot codes here
    String s=arg0.getName();
    try {
        Base.getScreenshot(s);
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    

Base class screenshot method

        public static void getScreenshot(String s) throws IOException
        {
        try{
        
        File src = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE);              
        // Copy files to specific location
        // arg0.getName() will return name of test case so that screenshot name will be same as test case name
        FileUtils.copyFile(src, new File(System.getProperty("user.dir")+"\"+s+".png"));
        System.out.println("Successfully captured a screenshot");
        }catch (Exception e){
        System.out.println("Exception while taking screenshot "+e.getMessage());
        }
        
}

I have manually failed the test using some incorrect locator to call the tentNG failure and when taking screenshot it retrieved null message as below

Output: Exception while taking screenshot null

Please can anyone help me to resolve this issue?

I'm blocked at the moment :(

question from:https://stackoverflow.com/questions/65831585/appium-im-getting-null-message-while-taking-screenshot

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...