-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
28 lines (22 loc) · 1.11 KB
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
class Urls:
main_page_url = "https://stellarburgers.nomoreparties.site"
main_page_url_after_login = "https://stellarburgers.nomoreparties.site/"
profile_page_url = "https://stellarburgers.nomoreparties.site/account/profile"
forgot_password_url = "https://stellarburgers.nomoreparties.site/forgot-password"
reset_password_url = "https://stellarburgers.nomoreparties.site/reset-password"
login_url = "https://stellarburgers.nomoreparties.site/login"
orders_history = "https://stellarburgers.nomoreparties.site/account/order-history"
orders_list = "https://stellarburgers.nomoreparties.site/feed"
class TextData:
email = '[email protected]'
password = '123456'
class ExpectedResults:
not_visible_password = 'password'
visible_password = 'text'
bun_name = 'Флюоресцентная булка R2-D3'
bun_count = '2'
order_status = 'Ваш заказ начали готовить'
order_status_in_list = 'Выполнен'
order_status_in_list_in_work = 'В обработке'
order_status_in_list_created = 'Создан'
default_order_value = '9999'