Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

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.

  • 3 weeks later...

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.

  • Author

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?

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. 

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.