Hello,
Can you help me to figure out a code to automate a button where within html code I have only:
"input type="submit" value="Inloggen"
The VBA code I have is:
Dim selenium As New ChromeDriver
selenium.Start "chrome", "https://www.woninginzicht.nl/mijn-omgeving/inloggen/"
selenium.Get "/"
selenium.FindElementById("username").SendKeys ("test")
selenium.FindElementById("password").SendKeys ("test")
selenium.FindElementById ....... code for click button ïnloggen
And another annoying thing is happening, the chrome window close it self after 2 sec , why ?
Can you help me to figure out a code to automate a button where within html code I have only:
"input type="submit" value="Inloggen"
The VBA code I have is:
Dim selenium As New ChromeDriver
selenium.Start "chrome", "https://www.woninginzicht.nl/mijn-omgeving/inloggen/"
selenium.Get "/"
selenium.FindElementById("username").SendKeys ("test")
selenium.FindElementById("password").SendKeys ("test")
selenium.FindElementById ....... code for click button ïnloggen
And another annoying thing is happening, the chrome window close it self after 2 sec , why ?