LucySuslova / selenide

Concise UI Tests with Java!

Home Page:http://selenide.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Maven Central Coverage Status Maven Central MIT License Free

Selenide = UI Testing Framework powered by Selenium WebDriver

Join the chat at https://gitter.im/codeborne/selenide Присоединяйся к чату https://gitter.im/codeborne/selenide-ru Follow Slack chat Слак чат

What is Selenide?

Selenide is a framework for writing easy-to-read and easy-to-maintain automated tests in Java. It defines concise fluent API, natural language assertions and does some magic for ajax-bases applications to let you focus entirely on the business logic of your tests.

Selenide is based on and is compatible to Selenium WebDriver 2.0

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

Look 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 jar

After build you'll find Selenide's .jar file under build/libs/ directory.

To build Selenide on Windows use gradle.bat jar command.

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 BrowserStack

License

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

About

Concise UI Tests with Java!

http://selenide.org

License:MIT License


Languages

Language:Java 86.4%Language:JavaScript 7.8%Language:HTML 3.7%Language:XSLT 0.9%Language:Shell 0.8%Language:Batchfile 0.3%