Results 91 comments of Mike
trafficstars

On the WebDriver functions GetInnerHTML and GetOuterHTML, suggest the following changes to default to document body if ElementId not specified: ``` Public Function GetInnerHTML(Optional ByVal ElementId As String = vbNullString,...

@ezagdd , if you don't mind me asking, why does GetAttribute handle the cases where user inputs "innerHTML" or "outerHTML"? I'm not an HTML nor JavaScript expert so was wondering......

Below is a proposal for adding HasAttribute function, and modifying GetAttribute... Any comments? ``` 'added by ezagdd originally, modified by GCUser99 Public Function GetAttribute(ByVal value As String, element As WebElement,...

Yeah, I changed my version of the entire code base (@uezo's & your contributions) to take on webelement parameters as opposed to webelement.elementid at the user level. See this [discussion](https://github.com/uezo/TinySeleniumVBA/discussions/50#discussion-3779856)......

This url explains the current process: https://github.com/GoogleChromeLabs/chrome-for-testing#json-api-endpoints Here is one of the endpoints exposed in the above link that contains the download urls for latest versions of Chrome: https://googlechromelabs.github.io/chrome-for-testing/last-known-good-versions-with-downloads.json And...

@DecimalTurn, The [SeleniumVBA](https://github.com/GCuser99/SeleniumVBA) twinBASIC DLL does not require any dependencies like SeleniumBasic does. It's a different (but still familiar) object model though, so code would have to be rewritten. But...

The below code works for me (Chrome version 114.0.5735.199 (64 bit), Windows 11, Chrome Driver version 114.0.5735.90). ``` Private Sub Connect_To_Chrome() 'start the browser on the debugging port CreateObject("WScript.Shell").Run "chrome.exe...

I do not get a "connection refused". Do you have any other Chrome browser instances open? Manually close any other Chrome browser windows and then try this: ``` Private Sub...