Stelth browser automation

Hi all
Do you guys have any solution in go language, for example, to log into your gmx email account and send an email in hidden browser mode on VPS…VDS…?

1 Like

What do you mean by “hidden brwoser mode”?

In general for sending an email from a server I’d use SMTP rather then interfacing with a browser.

If though you really want to use a browser, you should take a look at selenium, and google for an go interface for it.

1 Like

a bad news that Go doesn’t support it as it refefers here https://www.seleniumhq.org/about/platforms.jsp#programming-languages

1 Like

Elixir isn’t listed there as well, and I know binding exists.

tebeka/selenium (GoDoc) was my first hit on google when searching for “selenium golang”.

Also the same google quersy shows some BDD frameworks that say to use Selenium under the hood.

So there is a way to do what you want.

1 Like

Well, that’s nice but I would rather use official bindings for that like java for example.

1 Like

Then use one of the languages listed on the selenium page…

1 Like

hidden browser mode,I mean browser visible = false

1 Like

Selenium should support that.

1 Like

I found https://github.com/chromedp/examples , thanks for help all

2 Likes

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.