我在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:應爲 「選擇面板窗口」,但看到 「」 代替。