2011-07-07 120 views
0

我在eclipse中使用Selenium jar文件創建了一個java項目。 使用JUnit測試運行時,我收到Java異常錯誤:Selenium RC java異常問題

package com.example.tests;

import com.thoughtworks.selenium。*;

import java.util.ArrayList; import java.util.HashMap; import com.infy.csvUtil.CSVFileReader;

public class Creation extends SeleneseTestCase public void setUp()throws Exception setUp(「http://14.126.220.15:84333/」,「* firefox」); }

public void Creationv2() throws Exception { 

    try { 
     selenium.open("CCC/CEP?REQUEST=SIGNONREQ"); 
    } catch (Exception e) { 
     e.printStackTrace(); 
    } 
    selenium.selectWindow(null); 
    assertEquals("Selected panel window", selenium.getTitle()); 
    selenium.type("SignonUserName", "sssss"); 
    selenium.type("SignonPassword", "fewere"); 
    selenium.click("button1"); 
    if (selenium.isAlertPresent()) { 
     selenium.getAlert(); 
    } 

我收到以下錯誤運行時:

* * Java.lang.Assertionexception:應爲 「選擇面板窗口」,但看到 「」 代替。

回答

0

聲明以下聲明失敗。

assertEquals("Selected panel window", selenium.getTitle()); 

嘗試使用下面的語句來打印標題,並確認其是否與預期的標題匹配(即,「選定面板窗口」)

System.out.println("Title -> "+selenium.getTitle());