SeleniumBasic icon indicating copy to clipboard operation
SeleniumBasic copied to clipboard

element.Value not work. Chrome 91.0.4472.77

Open withusinfo opened this issue 3 years ago • 2 comments

Today, Chrome update 91.0.4472.77(Official Build)(64 bit). ChromeDriver is 91.0.4472.19 (latest)

.Value not work now.

Please tell me how to resolve.

Sub main()
  Dim drv As New ChromeDriver
  drv.Get "https://www.google.com/"
  
  Dim elm As WebElement
  Set elm = drv.FindElementByName("q")
  
  elm.SendKeys ("test")
  
  Debug.Print elm.Value   'Not work. Debug print ""
    
End Sub

withusinfo avatar May 27 '21 09:05 withusinfo

Same with me. Same bot Version. elm.value Returns null

Any Suggestion?

gido76 avatar Jun 02 '21 16:06 gido76

Seems a chromedriver issue. Not seleniumbasic:

https://bugs.chromium.org/p/chromedriver/issues/detail?id=3806#c9

gido76 avatar Jun 03 '21 15:06 gido76