greerso Posted June 27, 2014 Posted June 27, 2014 I'm using the java project "selenium" with "ghostdriver" and phantomjs as my browser to create screenshots of web pages. My code works perfectly in groovyConsole but has an error with the phantomjs driver once inside Scriptmaster. I think the problem may be that it requires access to a binary phantomjs that is not part of the jars. This is the code that executes in groovyConsole and produces a screenshot: import java.io.File import java.util.concurrent.TimeUnit import org.apache.commons.io.FileUtils import org.openqa.selenium.OutputType import org.openqa.selenium.TakesScreenshot import org.openqa.selenium.WebDriver import org.openqa.selenium.phantomjs.PhantomJSDriver System.setProperty("webdriver.phantomjs.driver", "/jars/phantomjsdriver-1.0.4.jar") System.setProperty("phantomjs.binary.path", "/jars/phantomjs") WebDriver driver = new PhantomJSDriver(); driver.manage().window().maximize() driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS) driver.get("http://www.google.com") File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE) FileUtils.copyFile(scrFile, new File("google.png"), true) driver.close() The error I get from Scriptmaster is: org.openqa.selenium.remote.UnreachableBrowserException: Could not start a new session. Possible causes are invalid address of the remote server or browser start-up failure. Build info: version: '2.34.0', revision: '11cd0ef', time: '2013-08-06 17:10:22' System info: os.name: 'Mac OS X', os.arch: 'i386', os.version: '10.10', java.version: '1.6.0_65' Driver info: driver.version: PhantomJSDriver Parameters: {} ---Script--- Script: import java.io.File import java.util.concurrent.TimeUnit import org.apache.commons.io.FileUtils import org.openqa.selenium.OutputType import org.openqa.selenium.TakesScreenshot import org.openqa.selenium.WebDriver import org.openqa.selenium.phantomjs.PhantomJSDriver System.setProperty("webdriver.phantomjs.driver", "/jars/phantomjsdriver-1.0.4.jar") System.setProperty("phantomjs.binary.path", "/jars/phantomjs") WebDriver driver = new PhantomJSDriver(); driver.manage().window().maximize() driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS) driver.get("http://www.google.com") File scrFile = ((TakesScreenshot)driver).getScreenshotAs(OutputType.FILE) FileUtils.copyFile(scrFile, new File("google.png"), true) driver.close() Its also worth noting that in groovyConsole, the code still works without the two setProperty lines. If I simplify the code the code to just: import org.openqa.selenium.OutputType import org.openqa.selenium.TakesScreenshot import org.openqa.selenium.WebDriver import org.openqa.selenium.phantomjs.PhantomJSDriver System.setProperty("webdriver.phantomjs.driver", "/jars/phantomjsdriver-1.0.4.jar") System.setProperty("phantomjs.binary.path", "/jars/phantomjs") WebDriver driver = new PhantomJSDriver() driver.get("http://www.google.com") driver.close() I get the same error in Scriptmaster and no error in groovyConsole.
_ian Posted July 17, 2014 Posted July 17, 2014 I'm curious why you're using Selenium here? If you use the PhantomJS sample script Rasterize.js then you can call PhantomJS from the shell and it will work nicely. I've just tested with the shell script example in ScriptMaster and it works correctly. At least on OS X - don't see why there'd be a problem on windows though.
greerso Posted July 17, 2014 Author Posted July 17, 2014 Rasterize.js from the shell is how I am and have been running it. I was looking for a way to make it more self contained and possibly more powerful and flexible. Do you think that its not possible to use Selenium in a Scriptmaster function? Do you know why the script would run in GroovyConsole and not in Scriptmaster, I would like to try to understand why it doesn't work?
_ian Posted July 17, 2014 Posted July 17, 2014 I've not tried Selenium with a ScriptMaster function so I don't have enough experience to form an opinion. By coincidence I was doing a fair bit with PhantomJS last week, though with PHP not FileMaker.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now