selenium icon indicating copy to clipboard operation
selenium copied to clipboard

Selenium/Webdriver client for Go

Results 108 selenium issues
Sort by recently updated
recently updated
newest added

How do I turn off Debug logging in Selenium for Golang? caps := selenium.Capabilities{"browserName": "chrome"} caps.SetLogLevel(log.Client, log.Off) caps.SetLogLevel(log.Driver, log.Off) caps.SetLogLevel(log.Server, log.Off) caps.SetLogLevel(log.Performance, log.Off) caps.SetLogLevel(log.Profiler, log.Off)

I'm just going through the code and it looks like it only supports on Firefox and Chrome (maybe Brave since it's now full-Chromium). I was wondering if there's any plans...

Hi Team, I am playing around for the first time and trying to port my python script to use it, while the python script does the job, the golang version...

See https://github.com/tebeka/selenium/pull/237 and https://github.com/tebeka/selenium/issues/236. We are missing a test for SetAlertText.

testing

The project is a bit stale, do you guys need more reviews? Here at the company were i work we have all our tests on top of the library. If...

How should I use the "debuggerAddress" configuration item to control the launched Chrome browser?

add func 'NewIEDriverService' for simply support call IEDriverService

just like python, use the method: driver.execute_cdp_cmd("Page.addScriptToEvaluateOnNewDocument", { "source": "Object.defineProperty(navigator, 'webdriver', {get: () => undefined})" })

Hello, I want to change User-Agent for Firefox (Geckodriver) but after looking into this: https://godoc.org/github.com/tebeka/selenium I can not find anyway to change User-Agent? Could you please give me an example...

opts := []selenium.ServiceOption{ selenium.Output(os.Stderr), // Output debug information to STDERR. } // How can I do this? opts = append(opts, selenium.StartupArg("--ignore-certificate-errors")) service, err := selenium.NewChromeDriverServiceEx(chromeDriverPath, port, opts...)