我想学习如何:
第 1 步:打开 URL - 例如 Gmail
第二步:输入用户名和密码,然后按登录。
如何插入用户名和密码并按下登录按钮?
我需要/必须使用硒吗?
此代码仅用于打开浏览器(步骤 1)
import java.io.IOException;
public class Website
{
public void openWebsite() //throws IOException
{
try
{
@SuppressWarnings("unused")
Process p = Runtime.getRuntime().exec("cmd /c start http://accounts.google.com/ServiceLogin ");
}
catch (IOException e1)
{
System.out.println(e1);
}
}
}