//System.setProperty("webdriver.ie.driver","E:\\seleniumIDE\\IEDriverServer.exe");
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String host="localhost";
int port=4444;
String browserType="*firefox";
String url="http://www.360buy.com";
//实例化Selenium1对象
DefaultSelenium selenium = new DefaultSelenium(host, port,browserType, url);
selenium.start();
//打开京东登录页面
selenium.open("https://passport.360buy.com/new/login.aspx");
//填写符合xpath的用户名文本框、密码文本框,单击登录
selenium.type("id=loginname", "UserName1");
selenium.type("id=nloginpwd", "Password");
selenium.click("id=loginsubmit");
System.out.println(selenium.getTitle());
}