with one click
selenium
Selenium browser automation framework. Use for web testing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Selenium browser automation framework. Use for web testing.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
| name | selenium |
| description | Selenium browser automation framework. Use for web testing. |
Selenium is an umbrella project for a range of tools and libraries that enable and support the automation of web browsers. It is the grandfather of browser automation and defined the W3C WebDriver standard.
WebDriver driver = new ChromeDriver();
driver.get("https://selenium.dev");
WebElement element = driver.findElement(By.id("search"));
element.sendKeys("webdriver");
element.submit();
driver.quit();
The API protocol that talks to the specific browser driver (chromedriver, geckodriver) which then controls the browser.
Allows running tests on different machines against different browsers in parallel.
A design pattern where each UI page is a class. Tests interact with the class methods rather than raw elements.
Do:
WebDriverWait(driver).until(ExpectedConditions....).ChromeOptions.addArguments("--headless")).Don't:
Android Studio IDE with emulator and profiler. Use for Android development.
Atom hackable text editor from GitHub. Use for extensible editing.
Babel JavaScript compiler for compatibility. Use for transpiling.
Biome fast formatter and linter. Use for code quality.
Bitbucket Git repository hosting with Pipelines. Use for Atlassian teams.
Confluence team documentation platform. Use for documentation.