Skip to content

Instantly share code, notes, and snippets.

View anilreddy's full-sized avatar
🥉
Focusing

Anil Kumar Reddy Gaddam anilreddy

🥉
Focusing
View GitHub Profile
@makolesnik
makolesnik / Selenide cheat sheet
Last active December 26, 2022 13:57
Selenide cheat sheet to create concise UI tests in Java. What is Selenide? Selenide is a wrapper for Selenium WebDriver. http://selenide.org/
=Navigating=
baseUrl = "http://site.com";
open("/login");
open("http://google.com");
switchTo().frame($("#myFrame").toWebElement());
=Alert=
switchTo().alert().accept();