seleniumkit / gridrouter

Selenium-based solution to serve 1000+ browsers
Other
152 stars 36 forks source link

Ability to run on Mac #44

Open mayukhg opened 5 years ago

mayukhg commented 5 years ago

Will this work on Mac machine or do I need to exclusively use Debian

vania-pooh commented 5 years ago

@mayukhg this project is abandoned. Please use this one: https://github.com/aerokube/ggr/ It has ready to use Docker images or standalone binaries compiled for several platforms including Darwin (i.e. Mac).

mayukhg commented 5 years ago

Hi, Is there any training video which I can reference for learning about ggr (there is one available on youtube but its in russian,a language I am not familiar with)

Regards, Mayukh

On Fri, 26 Oct 2018 at 14:58, Ivan Krutov notifications@github.com wrote:

@mayukhg https://github.com/mayukhg this project is abandoned. Please use this one: https://github.com/aerokube/ggr/ It has ready to use Docker images or standalone binaries https://github.com/aerokube/ggr/releases compiled for several platforms including Darwin (i.e. Mac).

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/seleniumkit/gridrouter/issues/44#issuecomment-433347125, or mute the thread https://github.com/notifications/unsubscribe-auth/AFv_tbKyHn5dny2zyxn4VPhCQZwlY03Zks5uotXagaJpZM4X7iNv .

-- Regards Mayukh Ghosh Cell:9860345364

vania-pooh commented 5 years ago

@mayukhg take a look at these videos: https://www.youtube.com/playlist?list=PLW7WVf1LXeWrCBv_48hOR-eWtshGBet9a They show how to setup and maintain Ggr.

mayukhg commented 5 years ago

Thanks for sharing

On Wed, 7 Nov 2018 at 13:25, Ivan Krutov notifications@github.com wrote:

@mayukhg https://github.com/mayukhg take a look at these videos: https://www.youtube.com/playlist?list=PLW7WVf1LXeWrCBv_48hOR-eWtshGBet9a They show how to setup and maintain Ggr.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/seleniumkit/gridrouter/issues/44#issuecomment-436535591, or mute the thread https://github.com/notifications/unsubscribe-auth/AFv_tSFFSv_PY9V7OlHN3jovba4YRWm-ks5uspHzgaJpZM4X7iNv .

-- Regards Mayukh Ghosh Cell:9860345364

andradahalmaciu commented 5 years ago

Hello,

I tried to run on a mac OS server and when I execute ./ggr_darwin_amd64 I get this output: 2019/03/21 09:57:04 [-] [-] [INIT] [-] [-] [-] [-] [-] [-] [Users file is ".htpasswd"] 2019/03/21 09:57:04 [-] [-] [INIT] [-] [-] [-] [-] [-] [-] [Loading configuration files from "quota"]

And when I access http://test:test-password@localhost:4444/wd/hub I get 404 page not found

Do you have some steps to get it run on a Mac machine also?

Regards,

Andrada

vania-pooh commented 5 years ago

@andradahalmaciu first of all this is a wrong repository. Correct is https://github.com/aerokube/ggr. But returning to the issue there is no such API in Selenium protocol:

GET /wd/hub # This is missing

Correct solution is to use this URL in Selenium tests code (opening in browser does not work). However the following requests should work in browsers:

GET /wd/hub/status # W3C standard API
GET /ping # Ggr-specific ping API

So opening one of these URLs should work.

andradahalmaciu commented 5 years ago

Hi @vania-pooh

Sorry for the wrong repo.

Thanks for your quick response.

Regards,

Andrada