I am using Selenium library for testing.
I have this little code:
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)
The problem is that, in the messagebox i cannot see the value of the control.
It can send keys correctly, but in the next line code cannot catch the value.
input?