selenium remote driver selenium grid
Budget: $10 – $30 USD
imagine following scenario:
client sets correctly chromedriver in PATH
client run selenium server by running java -jar .\selenium-server-4.1.4.jar standalone
gets following output => 20:41:08.446 INFO [Standalone.execute] - Started Selenium Standalone 4.1.4 (revision 535d840ee2): http://192.168.1.227:45345
so selenium server is running on client server
client IP ADDRESS 87.52.235.41 send POST request to server 54.25.125.31
server receive this request and want to open remotely on the client a selenium chrome instance
driver = webdriver.Remote(command_executor='http://87.52.235.41',desired_capabilities={'browserName': 'chrome'})
driver.get('www.google.com')
client selenium server never get this request and cant open google page on client machine
please help me solve this issue
client and server are both running on windows
I tried disabling firewall not working still
client sets correctly chromedriver in PATH
client run selenium server by running java -jar .\selenium-server-4.1.4.jar standalone
gets following output => 20:41:08.446 INFO [Standalone.execute] - Started Selenium Standalone 4.1.4 (revision 535d840ee2): http://192.168.1.227:45345
so selenium server is running on client server
client IP ADDRESS 87.52.235.41 send POST request to server 54.25.125.31
server receive this request and want to open remotely on the client a selenium chrome instance
driver = webdriver.Remote(command_executor='http://87.52.235.41',desired_capabilities={'browserName': 'chrome'})
driver.get('www.google.com')
client selenium server never get this request and cant open google page on client machine
please help me solve this issue
client and server are both running on windows
I tried disabling firewall not working still