2
我正在編寫一個測試來標記<input>
標記中的默認文本值。然而,這不是玩球:Selenium WebDriver從輸入字段中獲取文本
Assert.assertThat(webDriver.findElement(By.id("inputTag")).getText(), Matchers.is("2"));
我正在編寫一個測試來標記<input>
標記中的默認文本值。然而,這不是玩球:Selenium WebDriver從輸入字段中獲取文本
Assert.assertThat(webDriver.findElement(By.id("inputTag")).getText(), Matchers.is("2"));
這是input
元素 - 你需要得到value
屬性:
webDriver.findElement(By.id("inputTag")).getAttribute("value")
我懷疑'<的getAttribute()>'給出正確的屬性可能做的技巧,但我不確定那是什麼。 – Matthew