Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[🐛 Bug]: Grid session is not starting if use options.setEnableDownloads(true) #1565

Closed
kalyankumar381 opened this issue Jan 23, 2024 · 2 comments
Labels
bug Something isn't working needs-triaging

Comments

@kalyankumar381
Copy link

What happened?

Grid session is not starting if use options.setEnableDownloads(true)

What browsers and operating systems are you seeing the problem on?

Below is the sample code testing download option in grid
@test
public void test() throws MalformedURLException {
ChromeOptions options=new ChromeOptions();
options.setEnableDownloads(true);
driver=new RemoteWebDriver(new URL("http://localhost:4444"), options);
}

After running grid session is not starting and displayed

19:05:46.019 INFO [GridModel.release] - Releasing slot for session id 88b5317b8e40b4f847689547e2d3ccab
19:05:46.027 INFO [SessionSlot.stop] - Stopping session 88b5317b8e40b4f847689547e2d3ccab

Successfully running use below test (comment options.setEnableDownloads(true))

@Test
public void test() throws MalformedURLException {
	ChromeOptions options=new ChromeOptions();

// options.setEnableDownloads(true);
driver=new RemoteWebDriver(new URL("http://localhost:4444"), options);
}

@kalyankumar381 kalyankumar381 added bug Something isn't working needs-triaging labels Jan 23, 2024
Copy link
Contributor

@kalyankumar381, thank you for creating this issue. We will troubleshoot it as soon as we can.


Info for maintainers

Triage this issue by using labels.

If information is missing, add a helpful comment and then I-issue-template label.

If the issue is a question, add the I-question label.

If the issue is valid but there is no time to troubleshoot it, consider adding the help wanted label.

After troubleshooting the issue, please add the R-awaiting answer label.

Thank you!

@diemol
Copy link
Member

diemol commented Jan 23, 2024

This repository is for the documentation, please report it to https://github.com/SeleniumHQ/selenium/issues/new/choose

@diemol diemol closed this as not planned Won't fix, can't repro, duplicate, stale Jan 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working needs-triaging
Projects
None yet
Development

No branches or pull requests

2 participants