Skip to content

Commit

Permalink
add new test 10799
Browse files Browse the repository at this point in the history
  • Loading branch information
eroshenqa committed Nov 7, 2024
1 parent 7957af8 commit d40c599
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/test/java/io/qameta/allure/AuthTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package io.qameta.allure;

import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Test;

import static io.qameta.allure.Allure.step;

@Owner("eroshenkoam")
@Feature("Auth")
@Story("External Auth")
public class AuthTest {

@Test
@AllureId("10799")
@DisplayName("Авторизация через Одноклассники")
public void testOdnoklassniki() {
step("Открываем главную страницу");
step("Авторизуемся через Яндекс", () -> {
step("Вводим логин ranadom-user@yandex.ru");
step("Вводим пароль random-pass");
step("Нажимаем кнопку Войти");
});
step("Проверяем что авторизовались");
step("Проверяем что данные пользователя обновиилсь из Яндекс", () -> {
step("Expected Result", () -> {
step("Имя = Mr. Random");
step("Email = random-user@yandex.ru");
});
});
}

}

0 comments on commit d40c599

Please sign in to comment.