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

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

parent c6d44a14
...@@ -74,6 +74,7 @@ const AdminMenu = () => { ...@@ -74,6 +74,7 @@ const AdminMenu = () => {
<Button <Button
color="inherit" color="inherit"
onClick={handleClick} onClick={handleClick}
id='test_greetings'
> >
Hello, {user?.displayName} Hello, {user?.displayName}
</Button> </Button>
......
...@@ -58,6 +58,7 @@ const WorkerMenu = () => { ...@@ -58,6 +58,7 @@ const WorkerMenu = () => {
<Button <Button
color="inherit" color="inherit"
onClick={handleClick} onClick={handleClick}
id='test_greetings'
> >
Hello, {user?.displayName} Hello, {user?.displayName}
</Button> </Button>
......
...@@ -6,4 +6,4 @@ ...@@ -6,4 +6,4 @@
Если я ввожу в поле "email" текст "a@a.a0" Если я ввожу в поле "email" текст "a@a.a0"
И я ввожу в поле "password" текст "123" И я ввожу в поле "password" текст "123"
И я нажимаю на кнопку "#test_login" И я нажимаю на кнопку "#test_login"
То я перехожу на главную "/" То я вижу элемент "#test_greetings"
\ No newline at end of file \ No newline at end of file
...@@ -12,6 +12,6 @@ When('я нажимаю на кнопку {string}', (buttonId) => { ...@@ -12,6 +12,6 @@ When('я нажимаю на кнопку {string}', (buttonId) => {
I.click(buttonId) I.click(buttonId)
}); });
Then(перехожу на главную {string}', (page) => { Then(вижу элемент {string}', (text) => {
I.amOnPage(page) 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