我正在使用 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)
问题是,在消息框中我看不到控件的值。
它可以正确发送密钥,但在下一行代码中无法捕获该值。