次の方法を学びたい:
ステップ 1: URL を開く – Gmail など
ステップ 2: ユーザーとパスワードを挿入し、サインインを押します。
ユーザーとパスワードを挿入してサインイン ボタンを押すにはどうすればよいですか?
セレンを使用する必要がありますか?
このコードは、ブラウザを開くためだけのものです (ステップ 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);
}
}
}