
WE'RE OPEN SOURCE
Selenium on Steroids
Add Network Interception & Modification powers to Selenium without code. Set up Redirects, Modify Headers, Insert Custom Scripts, Add Throttles and much more to Selenium using Requestly.
Trusted by developers team at

4.7/5 Star rating

1000+ Chrome store reviews

185,000+ Happy users
Application and use cases
These are some of the main features that you will find yourself using.
Throttle Network Request
Simulate network conditions in selenium with the help of our Delay Network Request.
Modify HTTP Headers
Bypass authentication, set cookies by modifying header in selenium with the help of our Modify Headers Request.
Insert Script
Inject popular libraries or hosted scripts or execute custom code-snippet before or after page load using our Insert Scripts Rule.
Cancel Requests
Cancel or block specific network requests in your test environment without affecting the entire network using our Cancel Request Rule.
Takes less than a minute
Use Boilerplate Code
Turn yourself into a Testing Ninja by using our short and concise Selenium + Requestly boilerplate code.User our web interface or desktop app to create rules(no-coding required). Put in your shared list url and you're good to go ⚡!

// npm install selenium-webdriver @requestly/selenium
require("chromedriver"); // replace this with your browser driver
const { Builder } = require("selenium-webdriver");
const chrome = require("selenium-webdriver/chrome");
const {
getRequestlyExtension,
importRequestlyShared List,
} = require("@requestly/selenium");
const sharedListUrl = "YOUR SHARED LIST URL";
async function runSeleniumWithRequestly() {
const options = new chrome. Options().addExtensions(
getRequestlyExtension("chrome") // This installs requestly chrome extension in your testing instance
);
const driver = new Builder()
.forBrowser("chrome") // replace this with your browser
.setChromeOptions(options)
.build();
await importRequestlyShared List(driver, shared ListUrl); // Here we import the shared list created from our app
driver.get("http://www.google.com/"); // replace this with your test destination
runSelenium WithRequestly();
}
Requestly runs on all your favorite devices. Let's make developing and debugging easier!
For browsers
For desktops