Skip to content

Commit

Permalink
add test 10798
Browse files Browse the repository at this point in the history
  • Loading branch information
eroshenqa committed Nov 7, 2024
1 parent 541161f commit ee038c7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/test/java/io/qameta/allure/AuthTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,26 @@ public void testYandex() {
});
}

@Test
@AllureId("10798")
@DisplayName("Авторизация через VK")
@Story("Dva")
@Owner("eroshenkoam")
@Feature("Auth")
public void testVK() {
step("Открвааем главную страницу");
step("Авторизация через Яндекс", () -> {
step("Вводим логин eroshenkoam@yandex.ru");
step("Вводим пароль 1239812983123");
step("Нажимаем кнопку Войти");
});
step("Проверяем что авторизовались");
step("Проверяем что данные пользователя обновиилсь из Яндекс", () -> {
step("Expected Result", () -> {
step("Имя = Artem Eroshenko");
step("Email = eroshenkoam@yandex.ru");
});
});
}

}

0 comments on commit ee038c7

Please sign in to comment.