サインインを選択した後、Selenium Webdriver がフレームを見つける方法を教えてください。
https://www.guaranteedrate.com/agent/visitors サインインをタップし、キーをユーザー名に送信します
@テスト
public void fail() throws InterruptedException {
driver.findElement(By.linkText("Sign In")).click();
driver.switchTo().window("GB_window");
driver.switchTo().frame(0); driver.findElement(By.id("username")).sendKeys("testgr100@gmail.com");
}