Skip to content

Instantly share code, notes, and snippets.

@borodicht
Created December 16, 2024 17:53
Show Gist options
  • Save borodicht/83da60e113f5dd23b6d1177ef37240ba to your computer and use it in GitHub Desktop.
Save borodicht/83da60e113f5dd23b6d1177ef37240ba to your computer and use it in GitHub Desktop.
import org.testng.annotations.Test;
import static com.codeborne.selenide.Selectors.byText;
import static com.codeborne.selenide.Selenide.*;
public class ProjectTest extends BaseTest{
@Test
public void checkCreateProject() {
open("login");
$("[name=email]").setValue("[email protected]");
sleep(5000);
$("[name=password]").setValue("Kazantip_001");
$(byText("Sign in")).click();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment