我對硒很新,我想寫一個代碼,將登錄到我的網站,檢查下拉列表並點擊按鈕。 點擊該按鈕後,一個http角度請求被觸發並顯示結果。我的要求是等待響應,並檢查與硒的反應,然後從我的網站我需要添加一個等待,直到我得到來自角度http請求的響應與硒-jaD
driver = new ChromeDriver();
driver.get("https://url");
driver.findElement(By.id("userId")).sendKeys("USERID");
driver.findElement(By.id("password")).sendKeys("PASSWORD");
driver.findElement(By.id("Submit")).click();
Select dropdownA = new Select(driver.findElement(By.id("mySelectA")));
dropdownA.selectByValue("2");
Select dropdownB = new Select(driver.findElement(By.id("mySelectB")));
dropdownB.selectByValue("5");
driver.findElement(By.id("findroute")).click();
/***/Here i need to wait for the angular http request to reply and check for the data displayed***
driver.findElement(By.id("userTemp")).click();
driver.findElement(By.linkText("Logout")).click();
driver.close();
您指定了要求。你的問題是什麼? – CodeHacker
我需要等待角度http請求回覆並檢查顯示的數據。數據將顯示在HTML –