How can I remote control an https site in google chrome through Selenium RC -


i have simple test connects internal portal. have selenium rc connecting several browsers on vm (ie7, ff 4, opera, chrome). when send test ff or ie test runs fine, when send chrome, getting certificate error:

the site's security certificate not trusted! attempted reach portal.xxx.com, server presented certificate issued entity not trusted computer's

i have used certmgr.msc add *.xxx.com certificate windows trusted list. have examined certification chain.

*.xxx.com certified go daddy secure certification authority, listed in intermediate certification authorities.

go daddy secure certification authority certified go daddy class 2 certification authority, listed in trusted root certification authorites

excellent suggestion ross. implement have made following change in launch of remote control:

ant -denvironment="chrome on %os_name%" -dseleniumargs="-trustallsslcertificates" -dhost="%username%.xxxxxlab.yyyyy.com" -dhuburl="http://segrid.xxxxxlab.yyyyy.com:4444" -dport=5558 launch-remote-control 

is correct? if so, not solving problem

selenium rc generates new browser profile every time starts browser. sounds problem getting ssl-configuration change new profile.

rc's firefox support has way supply starter-set of profile content, rc uses instead of baked-in starter-set. doesn't appear chrome support has similar. place add in /server-coreless/src/main/java/org/openqa/selenium/server/browserlaunchers/googlechromelauncher.java, @ least in 1.0.x source.

it appears selenium 2.0b3 might work you. svn #9567 (2010-09-01) added "-trustallsslcertificates" option tell chrome ignore certificate errors.


Comments