Commit 744a36a7 authored by Ermolaev Timur's avatar Ermolaev Timur

#86 чуть отредактировал тест входа

parent c6d44a14
......@@ -74,6 +74,7 @@ const AdminMenu = () => {
<Button
color="inherit"
onClick={handleClick}
id='test_greetings'
>
Hello, {user?.displayName}
</Button>
......
......@@ -58,6 +58,7 @@ const WorkerMenu = () => {
<Button
color="inherit"
onClick={handleClick}
id='test_greetings'
>
Hello, {user?.displayName}
</Button>
......
......@@ -6,4 +6,4 @@
Если я ввожу в поле "email" текст "a@a.a0"
И я ввожу в поле "password" текст "123"
И я нажимаю на кнопку "#test_login"
То я перехожу на главную "/"
\ No newline at end of file
То я вижу элемент "#test_greetings"
\ No newline at end of file
......@@ -12,6 +12,6 @@ When('я нажимаю на кнопку {string}', (buttonId) => {
I.click(buttonId)
});
Then(перехожу на главную {string}', (page) => {
I.amOnPage(page)
Then(вижу элемент {string}', (text) => {
I.waitForElement(text, 5)
});
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment