Gmailの自動テストにC#でWebDriverを使用しています。フォームに記入し、ボタンをクリックして入力します。ログインの成功または失敗を確認するにはどうすればよいですか?
[FindsBy(How = How.Id, Using = "Email")]
public IWebElement username;
[FindsBy(How = How.Id, Using = "Passwd")]
public IWebElement password;
[FindsBy(How = How.Id, Using = "signIn")]
public IWebElement loginButton;
public LoginForm()
{
PageFactory.InitElements(Driver.driver, this);
}
public GmailPage Login(String username, String password)
{
this.username.SendKeys(username);
this.password.SendKeys(password);
this.loginButton.Click();
GmailPage result = new GmailPage();
return result;
}