Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get Started$pwd:
$ git log --oneline --stat
stars:8
forks:2
updated:February 10, 2026 at 17:05
SKILL.md
[HINT] Download the complete skill directory including SKILL.md and all related files
| 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: