Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
wd-parallel
Advanced tools
npm install wd-parallel
Start by importing the required library.
try {
p_webdriver = require('wd-parallel');
} catch( err ) {
p_webdriver = require('../lib/main');
}
Then create a default multiple browser object.
var browsers = p_webdriver.remote();
Now add a test method to the multiple browser object. This method needs to arguments named browser and desired.
browsers.test = function(browser, desired) {
console.log("server status:", browser.status());
browser.init(desired);
browser.get("http://google.com");
console.log("title is "+browser.title());
var queryField = browser.elementByName('q');
browser.type(queryField, "Hello World");
browser.type(queryField, "\n");
browser.setWaitTimeout(3000);
browser.elementByCss('#ires'); // waiting for new page to load
console.log(browser.title());
browser.quit();
};
Load the configuration for all your browsers from your configuration file.
//Load configuration file
browsers.loadConfigFile("examples/config.json");
Now you can go ahead and run the test !
//Run test on all browsers
browsers.run();
This uses node-wd-sync written by sebv so you can check this page on supported methods.
WD is simply implementing the Selenium JsonWireProtocol, for more details see the official docs: - http://code.google.com/p/selenium/wiki/JsonWireProtocol
...
FAQs
WebDriver/Selenium 2 node.js client
We found that wd-parallel 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.