/selenide

Concise UI Tests with Java!

Primary LanguageJavaMIT LicenseMIT

Build Status

Maven Central

Selenide = Concise API for Selenium WebDriver

What is Selenide?

Selenide is a library for easier using of Selenium WebDriver for automated tests in Java.

@Test
public void testLogin() {
 open("/login");
 $(By.name("user.name")).type("johny");
 $("#submit").click();
 $("#username").shouldHave(text("Hello, Johny!"));
}

Look for for detailed comparison of Selenide and Selenium WebDriver API.

Changelog

Here is CHANGELOG

How to start?

Just put selenide.jar to your project and import the following methods: import static com.codeborne.selenide.Selenide.*;

Look for Quick Start for details.

Resources

FAQ

See Frequently asked questions

How to build Selenide?

git clone https://github.com/codeborne/selenide.git
cd selenide
./gradle test

Feel free to fork, clone, build, run tests and contribute pull requests for Selenide!

Authors

Selenide was originally designed and developed by Andrei Solntsev in 2011-2015.

Thanks

Many thanks to these incredible tools that help us creating open-source software:

Intellij IDEA YourKit Java profiler

License

Selenide is open-source project, and distributed under the MIT license