51Testing软件测试论坛

标题: Selenium RC 测试HTTPS [打印本页]

作者: xufang1122    时间: 2012-6-25 14:33
标题: Selenium RC 测试HTTPS
被测试的网站是一个HTTPS的网站,我先建立一个firefox的profile(3j18puwy.HTTPS),再找个profile里面加载了https的证书,之后 启动selenium的server,
命令如下java -jar selenium-server-standalone-2.24.1.jar -firefoxProfileTemplate "C:\Users\nancy.xu\AppData\Roaming\Mozilla\Firefox\Profiles\3j18puwy.HTTPS"

测试代码如下
  1. package loginTest;
  2. import org.junit.After;import org.junit.Before;import org.junit.Test;
  3. import com.thoughtworks.selenium.*;

  4. @SuppressWarnings("deprecation")public class testLogin extends SeleneseTestCase{                 @Before            public void setUp() throws Exception {                selenium = new DefaultSelenium("localhost", 4444, "*firefox", "https://pimportalpl.bestbuy.com/wps/portal/");//                selenium = new DefaultSelenium("localhost", 4444, "*firefox", "http://www.baidu.com");                selenium.start();            }
  5.             @Test            public void testTest() throws Exception {                selenium.open("/");                selenium.open("https://xxxxxx/wps/portal/");                //selenium.open("/index.html");                //selenium.windowsMaximize();                System.out.println(selenium.getTitle());
  6.             }
  7.             @After            public void tearDown() throws Exception {//                selenium.stop();            }
  8. }
复制代码

但是还是发现selenium跑的时候用的是建立的firefox profile,但是还是要确认和加载证书.[img][/img]




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2