Gby3

Results 11 comments of Gby3

Theres no built in function in seleniumbasic to open a new tab (that i know) but you can use the javascript executor to open a new tab or a window...

Hi Paul have you checked the examples contained inside the seleniumbasic installation path? Im pretty sure there is an example there on how to start an IE instance.

Try this ``` Public Sub Use_InternetExplorer() Dim wdie As New IEDriver wdie.SetCapability "ignoreProtectedModeSettings", True wdie.SetCapability "INTRODUCE_FLAKINESS_BY_IGNORING_SECURITY_DOMAINS", True wdie.SetCapability "enableNativeEvents", True wdie.SetCapability "ignoreZoomSettings", True wdie.SetCapability "requireWindowFocus", True wdie.SetCapability "IE.ensureCleanSession", True wdie.Start...

Looks like there is no problem recognizing the object (webdriver) as you assumed in your first post. Debug your code step by step using F8 key so you can know...

I have no experience with intranet sites. so I couldn't tell you. It is probably not a blockage, maybe you are going wrong with the reference to the site. The...

Hi rufo, looks like the problem could be related to the fact that you are controlling excel externally but i may be wrong. Try runing everything with admin privileges at...

Hi James! The default path to install SeleniumBasic is fine as it is, so leave it like that (user/appdata/local). Now test your code like this: Dim ch As New Selenium.ChromeDriver...

How long is that taking? Should be fast enough. There are a few workarounds though but not recommended in some cases. You can modify element attributes using the javascript executor....

Hi gitcano, you can use javascript to center the element in the middle of the viewport instead of scrolling "a bit more" (this will be done independently of your monitor...

Hi @felimanue , im pretty sure i have seen this error before while starting a browser instance but it was 1 case out of 1000 and most likely related to...