現在、に取り組んでいselenium webdriver
ます。複数のドロップダウンを選択しようとしていますが、それはフィルターの選択です。複数のドロップダウンを選択したら、[フィルターの適用] ボタンをクリックすると、選択したフィルター セクションに基づいて結果が生成されます。そのため、複数のドロップダウンを選択する際に問題が発生し、[フィルターの適用] ドロップダウンをクリックできません。コードの使い方を教えてください。Javaを使用しています
ここに私のサンプルコードがあります:
driver.findElement(By.id("ext-new-prs")).click();
new Select(driver.findElement(By.id("visualizationId"))).selectByVisibleText("Center");
new Select(driver.findElement(By.id("periodId"))).selectByVisibleText("Last 52 Weeks");
new Select(driver.findElement(By.id("topographyId"))).selectByVisibleText("Center");
driver.findElement(By.cssSelector("#topographyId > option[value=\"center\"]")).click();
new Select(driver.findElement(By.id("centerId"))).selectByVisibleText("OAB");
new Select(driver.findElement(By.id("featureRequestId"))).selectByVisibleText("Include");
driver.findElement(By.id("kpiFilterSubmit")).click();