Mike
Mike
Hi @dvmarinoff, I'm still using Flux's distance mode to simulate hill climbing - I love it! I noticed that the only important stat that is missing from the display is...
For some unknown reason the Start method stopped working for me today. In order to fix, I had to add quotes (Chr(34)) to driverPath and that fixed it. It is...
As discussed [here ](https://github.com/uezo/TinySeleniumVBA/issues/25#issue-999802947), I do think there is a bug in Execute. I suspect that the sessionId and other path parameters such as (element)Id should not be keys of...
I went through the entire code base and changed any input parameter that was not typed as Object or Variant (such as strongly-typed Double, Long, Boolean, or String) to an...
I get a Class Not Registered error on my 64bit Excel/Windows when I try to run CurrentURL. I tested on two machines, one older Windows 10, and one brand new...
Consider adding optional Timeout and Raise parameters similar to SeleniumBasic WebDriver methods as in: ``` WebDriver.ExecuteScript (Script, , , , Timeout, Raise) WebDriver.Navigate (url, , Timeout, Raise) ``` Optional Timeout...
Hi, I know this is very early in dev cycle but in case it helps, I was able to connect my ant usb stick, but not my trainer devices (connection...
Started happening in ChromeDriver 117. Will continue to monitor here: https://bugs.chromium.org/p/chromedriver/issues/detail?id=4582 ... and here: https://stackoverflow.com/questions/77093248/chromedriver-version-117-forces-save-as-dialog-how-to-bypass-selenium-jav The easiest work-around thus far is to turn off incognito mode... A more involved work-around...
Steps to reproduce: ```vba driver.StartChrome driver.OpenBrowser incognito:=True driver.NavigateTo "https://www.wikipedia.org/" driver.Wait 1000 driver.Windows.SwitchToNew windowType:=svbaTab 'error happens here ``` Above results in "Failed to open new tab - no browser is open"....
A very strange bug occurs when combining the browser detach option of WebCapabilities class with a command window style that is NOT vbHide or vbMinimizedNoFocus. If any one of the...