我需要在每次更新後驗證一個元素.Ex:低溫:7.54經過一段時間後,數值變爲低溫:3.78,5.87,9.32 ...等等,每次經過一段時間(時間變化)後數值都在變化。但我需要的驅動程序,以獲得更新的值afterthe變化。如何使用硒的webdriver有沒有辦法檢查頁面是否重新加載WebDriver(java)?
WebElement PrecipitationLabel_14_L= (new WebDriverWait(driver, 30)).until(ExpectedConditions.presenceOfElementLocated(By.xpath(".//*[@id='webFor']/div/div[1]/div[1]/div/div[2]")));
String Precipationclass= PrecipitationLabel_14_L.getAttribute("class");
return Precipationclass;
你能考慮更新我們的確切要求?你想比較「7.54」和「3.78」中「低溫」的不同值。請考慮更新相關的HTML DOM。謝謝 – DebanjanB
我不需要比較值,一旦它得到更新,然後我需要驅動程序應該得到更新的值,所以驅動程序應該採取xpath值後更新 – RamanaMuttana