-
-
Notifications
You must be signed in to change notification settings - Fork 8.6k
Recovering #15494
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
Recovering #15494
Conversation
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
|||||||||||
User description
Thanks for contributing to Selenium!
A PR well described will help maintainers to quickly review and merge it
Before submitting your PR, please check our contributing guidelines.
Avoid large PRs, help reviewers by making them as simple and short as possible.
Motivation and Context
Types of changes
Checklist
PR Type
Enhancement, Tests, Configuration changes
Description
Enhanced
ExecutorServiceswith graceful shutdown and error handling.Refactored test methods in
ChromeDriverFunctionalTestandLocationContextTest.Increased heap size configurations in
.ideafiles for better performance.Minor updates to
AssemblyTeardown.cswith additional imports.Changes walkthrough 📝
ExecutorServices.java
Enhance graceful shutdown and error handlingjava/src/org/openqa/selenium/concurrent/ExecutorServices.java
DEFAULT_SHUTDOWN_TIMEOUTconstant for shutdown timeout.awaitTerminationandforceShutdownmethods for bettershutdown handling.
ChromeDriverFunctionalTest.java
Refactor ChromeDriver functional test methodsjava/test/org/openqa/selenium/chrome/ChromeDriverFunctionalTest.java
initializeChromeDriverandassertDefaultChromeCapabilitiesmethods.
LocationContextTest.java
Refactor LocationContext test methodsjava/test/org/openqa/selenium/html5/LocationContextTest.java
setAndRetrieveLocation.AssemblyTeardown.cs
Minor updates to AssemblyTeardown.csdotnet/test/remote/AssemblyTeardown.cs
Systemnamespace import.androidDexCompiler.xml
Update Android Dex Compiler heap size.idea/androidDexCompiler.xml
MAX_HEAP_SIZEfrom 4096 to 8192.compiler.xml
Update compiler heap size configurations.idea/compiler.xml
BUILD_PROCESS_HEAP_SIZEandMAXIMUM_HEAP_SIZEto 2048.