Selenium Golang serverless binding

There are many Golang webdriver binding packages. However, I do not want to control the browser server.

How can I control the browser using Golang and selenium without a selenium server?

+5
source share
1 answer

You can try github.com/fedesog/webdriver , which is listed in its documentation:

This is a pure go library and does not require the Selenium driver to run.

+1
source

Source: https://habr.com/ru/post/1232452/


All Articles