Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Trying to take screenshots of flash-enabled webpages via Selenium Webdriver. I'm currently testing with sample code and a youtube page.

I read from Taking screenshot of flash object using Selenium with Webdriver that I might need to change some tags using javascript, so I took the js from a link in that question that, slapped it in a file that I'm pulling as a string, and executing that.

        WebDriver driver = new FirefoxDriver();

    try {
        driver.get("http://www.youtube.com/watch?v=1RzEfoxBi_c&feature=b-cat-pets");


        Thread.sleep(9000);

        System.out.println("What's the current Url: "
                + driver.getCurrentUrl());

        JavascriptExecutor js;
        if (driver instanceof JavascriptExecutor) {
            js = (JavascriptExecutor)driver;
            System.out.println("What.");

            String js_to_run = "";
            js_to_run = fileToString("/home/charles/Documents/fix_wmode2transparent_swf.js");

            js.executeScript(js_to_run);

        }
        String aaa = captureScreen(driver);
        screencap
        File scrFile = ((TakesScreenshot) driver)
                .getScreenshotAs(OutputType.FILE);
        FileUtils.copyFile(scrFile, new File(
                "/home/charles/crontest/googlesearch-webdriverapi.png"));

        //driver.close();
    } catch (Exception e) {
        e.printStackTrace(); // For debugging purposes
    }

Problem is, I keep getting black boxes where the youtube video should be living.

Oh, and also I can't seem to make a ChromeDriver object. Possibly unrelated.

share|improve this question
Guess it works fine with the ChromeDriver, just not with Firefox. – Fal-Cone Nov 15 '12 at 19:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.