Recently, the POODLE vulnerability has forced sites to remove SSLv3 support. Since PhantomJS <v1.9.8 uses SSLv3 by default, the page cannot be loaded. To fix this, you need to start PhantomJS with --ssl-protocol=tlsv1or --ssl-protocol=any. See this answer for a simple PhantomJS.
caps = DesiredCapabilities.phantomjs();
caps.setCapability(PhantomJSDriverService.PHANTOMJS_CLI_ARGS,
new String[] {"--ssl-protocol=tlsv1"});
driver = new PhantomJSDriver(caps);
If this does not solve the problem, you can also add
"--web-security=false", "--ignore-ssl-errors=true"
String cli, SiKing .