1

我正在使用 Selenium 库进行测试。

我有这个小代码:

Dim driver As New FirefoxDriver()
driver.Navigate().GoToUrl("C:\Users\Amodio\Desktop\HTMLPage1.htm")
driver.FindElement(By.Id("30")).SendKeys("1234")
MsgBox(driver.FindElement(By.Id("30")).Text)

问题是,在消息框中我看不到控件的值。

它可以正确发送密钥,但在下一行代码中无法捕获该值。

4

1 回答 1

1

就像您在问题标题中所说的那样,您想显示文本框的value.

对于文本框,element.GetAttribute("value")是您想要的,而不是element.Text.

MsgBox(driver.FindElement(By.Id("30")).GetAttribute("value"))
于 2013-06-12T21:17:04.947 回答