-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Closed as not planned
SeleniumHQ/docker-selenium
#2346Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!I-defectSomething is not working as intendedSomething is not working as intended
Description
What happened?
I started a selenium stand alone (selenium) server in fly.io using the docker container. However, when I send requests to the url the test are stuck in the queue and are not run.
How can we reproduce the issue?
Create a folder with a dockerfile in it with the following contents:
FROM selenium/standalone-edge:latest
WORKDIR /app
Then run fly launch, which will launch the docker container to fly.io.
Then make a connect to the server remotely programmatically. I do did so via the following code:
$serverUrl = env('SELENIUM_URL', false);
$driver = RemoteWebDriver::create($serverUrl, DesiredCapabilities::chrome());
$driver->get('[any website of choice]');
$text = $driver->findElement(WebDriverBy::tagName('tbody'))->getText();
Relevant log output
n/a
Operating System
Windows 11
Selenium version
selenium/standalone-chrome (image)
What are the browser(s) and version(s) where you see this issue?
chrome
What are the browser driver(s) and version(s) where you see this issue?
chrome
Are you using Selenium Grid?
4.23.0
Metadata
Metadata
Assignees
Labels
A-needs-triagingA Selenium member will evaluate this soon!A Selenium member will evaluate this soon!I-defectSomething is not working as intendedSomething is not working as intended