![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
webdriver-pool
Advanced tools
This project was created out of frustration over the general stability of primarily phantomJS, it attempts to make controlling a number of webdriver instances more easy by providing a pooling functionality, the pool offers auto regeneration for broken drivers and relatively simplistic configuration options, it was made for certain use-cases only and is rather limited in functionality, PRs are welcome.
For simple example usage, please see the test folder.
Default settings:
{
count: 1,
browser: 'phantomjs',
logging: {
path: 'webdriverfiles',
level: 'INFO'
},
storage: {
path: 'webdriverfiles'
},
scriptTimeout: 15000,
pageTimeout: 15000,
implicitTimeout: 1500,
viewport: {
width: 1280,
height: 800
}
}
All settings:
{
count: NUMBER,
browser: STRING(phantomjs|firefox|chromium),
logging: {
path: STRING,
level: STRING(please see here https://selenium.googlecode.com/git/docs/api/javascript/enum_webdriver_logging_Level.html)
},
storage: {
path: STRING
},
scriptTimeout: NUMBER milliseconds,
pageTimeout: NUMBER milliseconds,
implicitTimeout: NUMBER milliseconds,
viewport: {
width: NUMBER pixels,
height: NUMBER pixels
},
proxy: { // Only with firefox and phantomjs
username: STRING,
password: STRING,
address: STRING,
port: STRING/NUMBER
},
userAgent: STRING, // only works with phantomjs
loadImages: boolean // only works with phantomjs
}
#Promise Pool.ready Promise that will resolve once the pool is set up.
#Promise Pool.getDriver() Request a driver from the pool, will queue if all drivers are busy.
#Pool.returnDriver(WebDriver) Should be called when the driver is no longer needed, makes it available for other operations.
#Promise Pool.destroy() Kills all drivers, do not use object after calling this method.
#Promise Pool.renewDriver(driver) Kills the given driver and replaces it with a "healthy" new driver.
FAQs
Pooling class for webdriver instances.
The npm package webdriver-pool receives a total of 1 weekly downloads. As such, webdriver-pool popularity was classified as not popular.
We found that webdriver-pool demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.