- 授权协议: LGPL
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/codeborne/selenide
- 软件文档: https://github.com/codeborne/selenide
软件介绍
selenide是用于提高基于WebDriver的自动化测试便利性的Java类库。
示例测试:
@Test
public void testLogin() {
open("/login");
$(By.name("user.name")).type("johny");
$("#submit").click();
$("#username").shouldHave(text("Hello, Johny!"));
}
