Skip to content
johnnyRhino edited this page Jun 2, 2011 · 2 revisions

FAQ

Re-direct is not followed on a page when using HTTPS

If the website being redirected to has a non-supported certificate then you'll need to import the certificate into your local Java JDK using keytool.

Linux:

keytool -importcert -alias "website-cert" -keystore "$JAVA_HOME/jre/lib/security/cacerts" -file website.cert{code}

Mac OSX:

sudo keytool -importcert -alias website -keystore `/usr/libexec/java_home`/lib/security/cacerts -file website.cert

The default keychain password is 'changeit'

Adding comments to your tests

To add single line comment to a test simply prepend a # to the front of the line.

# this is a useful test

Clone this wiki locally