Created
December 16, 2024 17:53
-
-
Save borodicht/83da60e113f5dd23b6d1177ef37240ba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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