|
Selenium RC server的一个重要启动参数是-firefoxProfileTemplate <dir>,这个参数用于指定firefox启动参数模板的路径,Firefox在启动浏览器时,会使用prefs.js文件获取参数,缺省位置在C:\Documents and Settings\cuikang\Application Data\Mozilla\Firefox\Profiles\,但实际上Selenium RC server在启动时缺省不使用任何参数,也就是说无法配置各种浏览器参数,比如代理服务器设置等等。
但我在使用Selenium RC server时,其实是想让它通过本地代理服务器访问外网,因为RPT(Rational performance tester)使用localhost:1080监听http请求和响应以录制测试脚本,所以我使用了自制的prefs.js来启动Firefox,启动 Selenium RC server:
H:\selenium-remote-control-1.0-beta-2\selenium-server-1.0-beta-2>java -jar selen
ium-server.jar -firefoxProfileTemplate H:\selenium-remote-control-1.0-beta-2\sel
enium-server-1.0-beta-2\profiles\new -singleWindow
prefs.js文件内容:
user_pref("network.http.proxy.version", "1.0");
user_pref("network.proxy.no_proxies_on", "localhost,mozilla.com,sina.com.cn");
user_pref("network.proxy.socks", "localhost");
user_pref("network.proxy.socks_port", 1080);
user_pref("network.proxy.socks_version", 4);
user_pref("network.proxy.type", 1);
其中network.proxy.sock指定代理服务器host,network.proxy.socks_port指定代理端口,network.proxy.no_proxies_on指定哪些url不需要经过代理服务器,这个参数非常重要,因为Selenium RC server在启动firefox时会访问本地的文件,如果不过滤localhost等,那么RPT会录到很多无用的URL。
原 |
|