webdriver
webdriver copied to clipboard
Implementation of JSONWireProtocol in go
hi, sorry i am new to golang, can someone teach me how i can enable --headless here?
how can i start chrome with a specific user profile ? i need this in my app
small addition: this will generate a random [open] port via freeport module so that hard-coded port _9515_ isn't always used; allows for spawning of multiple concurrent processes instead of throwing...
- special Keys for coveniance - WindowHandle made public because FocusOnWindow need a string as input.
Getting the following error from webdriver.Session.SetCookie() `unknown error: name of cookie is missing or invalid:"undefined"` Using the following code: ``` for _, cookie := range session.Web.Jar.Cookies(url) { log.Print(cookie.Name) log.Print(webSession.SetCookie(webdriver.Cookie{ Name:cookie.Name,...
There is any way to detect when the page is loaded?
add ability to set URL of webdriver. closes #9
Within my setup I have an existing chromedriver instance running as a daemon. So i would like to just be able to specify my own url to be used rather...
See described here: http://docs.seleniumhq.org/docs/04_webdriver_advanced.jsp The selenium lib in Java, python, ruby, etc. all support it, and it seems quite easy to implement. For example see the python implementation: https://code.google.com/p/selenium/source/browse/py/selenium/webdriver/support/wait.py Thanks!