I'm trying to automate Edge browser with CDP using VBA written by ChrisK23
I prefer this method because I don't want to install Selenium drivers.
It works well with Google using the sample code but somehow it fails when working with the Linkedin developer site: https://www.linkedin.com/developers/apps/new
It fails to input my credentials using the following:
Call objBrowser.jsEval("document.getElementById(""username"").value='" & myEmail & "';")
Call objBrowser.jsEval("document.getElementById(""password"").value='" & myPwd & "';")
I found the page was loaded completely but can't get the credential elements which are username input field, password input field, and sign in button.
Have tried several methods to get the element(s) (by name or looping through) but not success.
Any ideas?