Skip to content

Instantly share code, notes, and snippets.

View gh0stinthesh311's full-sized avatar
🤑
WMAO

Bagzhan Sadvakassov gh0stinthesh311

🤑
WMAO
View GitHub Profile
@gh0stinthesh311
gh0stinthesh311 / Selenide cheat sheet
Created June 4, 2021 09:50 — forked from makolesnik/Selenide cheat sheet
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();