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.