I'm trying to modify all my VBA automations with selenium. I'm trying to write text inside an html element to be able to display it on the screen.
I wish I could change this item from this:
<span id="__xmlview0--panel1Title-inner" dir="auto"> Ricerca </span >
to this:
<span id="__xmlview0--panel1Title-inner" dir="auto"> PIPPO </span>
using a Selenium command.
I tried using the command:
DRIVER.FindElementById("__xmlview0--panel1Title-inner").SendKeys ("PIPPO")
but it doesn't work and returns this error: Error
Does anyone know how I can fix it?
Grazie