Debt Pricing Template をクリックすると表示される新しいウィンドウに切り替えようとしています。しかし、私はそれを行うことができず、その結果、さらにスクリプトを進めることができません...問題は、switchTo.window()
価格承認ゲートウェイ ウィンドウが表示され、次が HTML であるため、何を渡す必要があるかを知ることができないことです。新しいウィンドウの場合:
<*h1 class="pageType noSecondHeader">Pricing Approval Gateway<*/h1>
コードは次のとおりです。
LoginPage2.driver.findElement(By.linkText("TEST ORG")).click();
System.out.println("3.Select Dept pricing template button from the organization detail page.");
if(LoginPage2.driver.findElement(By.name("debt_pricing_template")).isDisplayed())
System.out.println("User should able to navigate to Dept pricing template and template display few question, user have answer these question for further navigation.");
LoginPage2.driver.findElement(By.name("debt_pricing_template")).click();
LoginPage2.driver.manage().timeouts().implicitlyWait(100, TimeUnit.SECONDS);
LoginPage2.driver.switchTo().window("bPageTitle");
何を追加する必要があるか教えてください。