playtender_common.robot
34.4 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
*** Settings ***
Library Selenium2Library
Library String
Library Collections
Library playtender_service.py
Resource playtender_variables.robot
*** Variables ***
${broker} = playtender
${broker_username} =
${broker_baseurl} =
${broker_browser} =
${broker_language_code} = uk
${test_role} =
${is_test_role_owner} =
@{browser_default_size} = ${1200} ${1000}
@{browser_default_position} = ${0} ${0}
${popup_transaction_time} = 600ms
*** Keywords ***
init environment
[Arguments] ${username}
[Documentation] ініціює необхідні глобальні змінні
set global variable ${broker_username} ${username}
set global variable ${broker_baseurl} ${BROKERS['${broker}'].basepage}
set global variable ${broker_browser} ${USERS.users['${broker_username}'].browser}
set global variable ${test_role} ${ROLE}
${is_test_role_owner} = set variable if '${test_role}' == 'tender_owner' ${True} ${False}
set global variable ${is_test_role_owner} ${is_test_role_owner}
set site language by code
[Arguments] ${language_code}
[Documentation] змінити мову сайту
${is_equal} = __private__check_site_language_code ${language_code}
run keyword if ${is_equal} == ${False} __private__open_site_language_dropdown_and_select_language_by_code ${language_code}
login to site
[Arguments] ${user_data}
[Documentation] авторизувати вказаного користувача, масив повинен містити login, password
click visible element ${login_popup_open_locator}
wait until popup is visible
input text to visible input ${login_popup_login_input_locator} ${user_data['login']}
input text to visible input ${login_popup_password_input_locator} ${user_data['password']}
click visible element ${login_popup_submit_btn_locator}
wait until page contains element ${user_logged_checker_element_locator} 30s User can not login
fill item form in opened popup
[Arguments] ${data}
[Documentation] заповнює відкриту форму згідно вказаних даних
${description} = get from dictionary by keys ${data} description
run keyword if condition is not none ${description} input text to visible input ${item_form_popup_description_input_locator} ${description}
${description_ru} = get from dictionary by keys ${data} description_ru
run keyword if condition is not none ${description_ru} input text to exist visible input ${item_form_popup_description_ru_input_locator} ${description_ru}
${description_en} = get from dictionary by keys ${data} description_en
run keyword if condition is not none ${description_en} input text to exist visible input ${item_form_popup_description_en_input_locator} ${description_en}
${quantity} = get from dictionary by keys ${data} quantity
run keyword if condition is not none ${quantity} input number to visible input ${item_form_popup_quantity_input_locator} ${quantity}
${unit} = get from dictionary by keys ${data} unit name
run keyword if condition is not none ${unit} select from visible list by label ${item_form_popup_unit_input_locator} ${unit}
${classification} = get from dictionary by keys ${data} classification
run keyword if condition is not none ${classification} select classification by code attributes ${item_form_popup_classification_edit_btn_locator} ${classification}
${additional_classifications} = get from dictionary by keys ${data} additionalClassifications
run keyword if condition is not none ${additional_classifications} select classification by array of code attributes ${item_form_popup_additional_classification_edit_btn_locator} ${additional_classifications}
get value by locator on opened page
[Arguments] ${locator} ${type}=${None}
[Documentation] отримує значення з відповідного локатору і якщо потрібно перетворює до відповідного типу
__private__set_element_visible_in_browser_area ${locator}
${value} = get value by locator ${locator}
${value} = convert to specified type ${value} ${type}
[Return] ${value}
get field_value by field_name on opened page
[Arguments] ${field_name}
[Documentation] повертає інформацію з відкритої сторінки, користуючись назвою поля ${field_name}.
... для назви поля повинен бути вказаний відповідний локатор (!вкінці змінної повинно бути слово locator),
... і якщо потрібно тип поля окремою змінною (!locator замінюється на type) зі значенням [string,integer,float]
${field_name_prepared} = replace string ${field_name} .[ _
${field_name_prepared} = replace string ${field_name_prepared} ]. _
${field_name_prepared} = replace string ${field_name_prepared} . _
${field_name_prepared} = replace string ${field_name_prepared} [ _
${field_name_prepared} = replace string ${field_name_prepared} ] _
${field_locator_variable_name} = set variable ${field_name_prepared}_locator
${field_type_variable_name} = set variable ${field_name_prepared}_type
${field_type_variable_exists} = run keyword and return status variable should exist ${${field_type_variable_name}}
${field_type} = set variable if ${field_type_variable_exists} == ${True} ${${field_type_variable_name}} ${None}
${field_locator} = set variable ${${field_locator_variable_name}}
${field_value} = get value by locator on opened page ${field_locator} ${field_type}
[Return] ${field_value}
########################################################################################################################
#################################################### COMMON HELPERS ####################################################
########################################################################################################################
click visible element
[Arguments] ${locator}
[Documentation] перевіряє видимість і клікає по елементу
__private__set_element_visible_in_browser_area ${locator}
click element ${locator}
click visible element and wait until page contains element
[Arguments] ${locator} ${checker_element_locator} ${waiting_timeout}=30s ${waiting_error}=Another element was not shown after clicking on specific element
[Documentation] перевіряє видимість і клікає по елементу
click visible element ${locator}
wait until page contains element ${checker_element_locator} ${waiting_timeout} ${waiting_error}
click removing form item and wait success result
[Arguments] ${locator}
[Documentation] натискає кнопку видалення, очікує успішне повідомлення і закриває повідомлення
click visible element ${locator}
wait until alert is visible
click visible element ${alert_confirm_btn_locator}
wait until page does not contain element ${alert_confirm_btn_locator}
input text to visible input
[Arguments] ${locator} ${text}
[Documentation] перевіряє чи елемент видимий у вікні браузера, після чого заповнює його
__private__set_element_visible_in_browser_area ${locator}
input text ${locator} ${text}
input text to visible input and press enter
[Arguments] ${locator} ${text}
[Documentation] перевіряє чи елемент видимий у вікні браузера, після чого заповнює його і імітує натиснення кнопки Enter
input text to visible input ${locator} ${text}
press key ${locator} \\13
input text to exist visible input
[Arguments] ${locator} ${text}
[Documentation] перевіряє чи елемент існує і видимий у вікні браузера, після чого заповнює його
${input_exists} = get is element exist ${locator}
run keyword if ${input_exists} == ${True} input text to visible input ${locator} ${text}
... ELSE __private__log input ${locator} does not exist
input date to visible input
[Arguments] ${locator} ${isodate} ${format}=%d.%m.%Y
[Documentation] перевіряє чи елемент видимий у вікні браузера, після чого заповнює його відформатовоною датою
__private__set_element_visible_in_browser_area ${locator}
${date} = isodate format ${isodate} ${format}
input text ${locator} ${date}
input datetime to visible input
[Arguments] ${locator} ${isodate} ${format}=%d.%m.%Y %H:%M
[Documentation] перевіряє чи елемент видимий у вікні браузера, після чого заповнює його відформатовоною датою
input date to visible input ${locator} ${isodate} ${format}
input datetime to exist visible input
[Arguments] ${locator} ${isodate} ${format}=%d.%m.%Y %H:%M
[Documentation] перевіряє чи елемент видимий у вікні браузера, після чого заповнює його відформатовоною датою
${input_exists} = get is element exist ${locator}
run keyword if ${input_exists} == ${True} input date to visible input ${locator} ${isodate} ${format}
... ELSE __private__log input ${locator} does not exist
input number to visible input
[Arguments] ${locator} ${number}
[Documentation] робить елемент видимим, число перетворює в строку і записує в поле
${number} = convert float to string ${number}
input text to visible input ${locator} ${number}
input number to exist visible input
[Arguments] ${locator} ${text}
[Documentation] перевіряє чи елемент існує і видимий у вікні браузера, після чого заповнює його
${input_exists} = get is element exist ${locator}
run keyword if ${input_exists} == ${True} input number to visible input ${locator} ${text}
... ELSE __private__log input ${locator} does not exist
input month.year of date to visible input
[Arguments] ${locator} ${isodate}
[Documentation] робить елемент видимим, витягує місяць.рік і записує в поле
${value} = isodate format ${isodate} %m.%Y
input text to visible input ${locator} ${value}
input to search form and wait results
[Arguments] ${query_input_locator} ${query} ${result_locator_tpl}
[Documentation] заповнює форму і очікує результат по шаблону селектора
input text to visible input and press enter ${query_input_locator} ${query}
${result_locator} = replace string ${result_locator_tpl} %query% ${query}
wait until page contains element with reloading ${result_locator}
select from visible list by value
[Arguments] ${locator} ${value}
[Documentation] робить елемент видимим, після чого заповнює його
__private__set_element_visible_in_browser_area ${locator}
select from list by value ${locator} ${value}
trigger input change event ${locator}
select from visible list by label
[Arguments] ${locator} ${label}
[Documentation] робить елемент видимим, після чого заповнює його
__private__set_element_visible_in_browser_area ${locator}
select from hidden list by label ${locator} ${label}
trigger input change event ${locator}
select from visible list by year of date
[Arguments] ${locator} ${isodate}
[Documentation] робить елемент видимим, витягує рік і обирає в списку
${value} = isodate format ${isodate} %Y
select from visible list by value ${locator} ${value}
select classification by code attributes
[Arguments] ${btn_locator} ${code_attributes}
[Documentation] натискає кнопку відкриття попапу класифікатора і чекає поки він відмалюється, шукає відповідний код і закриває попап
${code_attributes_array} = create list ${code_attributes}
select classification by array of code attributes ${btn_locator} ${code_attributes_array}
select classification by array of code attributes
[Arguments] ${btn_locator} ${code_attributes_array} ${include_schemes}=${None} ${exclude_schemes}=${None}
[Documentation] натискає кнопку відкриття попапу класифікатора і чекає поки він відмалюється, шукає відповідні коди і закриває попап
${include_schemes_is_none}= get variable is none ${include_schemes}
${exclude_schemes_is_none}= get variable is none ${exclude_schemes}
open popup by btn locator ${btn_locator} ${classification_popup_opened_content_locator}
Capture Page Screenshot
:FOR ${code_attributes} IN @{code_attributes_array}
\ ${disabled} = set variable if ${include_schemes_is_none} == ${False} and '${code_attributes['scheme']}' not in ${include_schemes} ${True} ${False}
\ Capture Page Screenshot
\ ${disabled} = set variable if ${exclude_schemes_is_none} == ${False} and '${code_attributes['scheme']}' in ${exclude_schemes} ${True} ${disabled}
\ Capture Page Screenshot
\ run keyword if ${disabled} == ${False} __private__select_classification_code_in_opened_popup ${code_attributes['id']} ${code_attributes['scheme']}
\ Capture Page Screenshot
Capture Page Screenshot
submit current visible popup
open site page and wait content element
[Arguments] ${url} ${waiting_timeout}=5s ${waiting_error}=Opening page fails
[Documentation] переходить по посиланню і чекає контенту сторінки
go to ${url}
wait until page contains element ${page_content_locator} ${waiting_timeout} ${waiting_error}
open page and wait element by locator
[Arguments] ${url} ${waiting_element_locator} ${waiting_timeout}=5s ${waiting_error}=Opened page does not have specified element locator
[Documentation] переходить по посиланню і чекає поки елемент не буде знайдений на сторінці
go to ${url}
wait until page contains element ${waiting_element_locator} ${waiting_timeout} ${waiting_error}
open popup by btn locator
[Arguments] ${btn_locator} ${popup_locator}=${None}
[Documentation] натискає кнопку відкриття попапу і чекає поки він відмалюється
click visible element ${btn_locator}
wait until popup is visible ${popup_locator}
submit current visible popup
[Documentation] натискає кнопку сабміту в поточному попапі і чекає поки він закриється
${popup_last_id} = __private__get_element_attribute ${popup_opened_last_locator} id
click visible element ${popup_opened_last_submit_btn_locator}
sleep ${popup_transaction_time}
${popup_last_locator} = set variable id=${popup_last_id}
${popup_exists} = get is element exist ${popup_last_locator}
return from keyword if ${popup_exists} == ${False}
wait until page does not contain element ${popup_last_locator} 30s Current popup was not hidden
submit form and check result
[Arguments] ${submit_btn_locator} ${wait_msg}=${None} ${wait_element_locator}=${None}
[Documentation] сабмітить форму і чекає повідомлення (якщо задано) + елемент (якщо задано)
click visible element ${submit_btn_locator}
run keyword if condition is not none ${wait_msg} wait until alert is visible ${wait_msg}
run keyword if condition is not none ${wait_msg} close current visible alert
run keyword if condition is not none ${wait_element_locator} wait until page contains element ${wait_element_locator} 60s Element was not shown after form submitting
wait until popup is visible
[Arguments] ${popup_locator}=${None} ${waiting_timeout}=30s ${waiting_error}=Opened popup still not visible
[Documentation] чекає поки попап не стане видимим на сторінці
${popup_locator_is_none} = get variable is none ${popup_locator}
${popup_locator} = set variable if ${popup_locator_is_none} == ${False} ${popup_locator} ${popup_opened_content_locator}
wait until element is visible ${popup_locator} ${waiting_timeout} ${waiting_error}
wait until alert is visible
[Arguments] ${message}=${None}
[Documentation] чекає поки не з'явиться алерт
${message_is_none} = get variable is none ${message}
${message} = convert to string ${message}
${alert_message_locator} = replace string ${alert_message_contains_text_locator_tpl} %text% ${message}
run keyword if ${message_is_none} == ${True} wait until page contains element ${alert_opened_locator} 60s Alert was not shown
run keyword if ${message_is_none} == ${False} wait until page contains element ${alert_message_locator} 60s Alert was not shown
close current visible alert
[Documentation] закриває поточний alert
click visible element ${alert_opened_close_btn_locator}
wait until page contains element with reloading
[Arguments] ${locator} ${retry}=5m ${retry_interval}=2s
[Documentation] чекає поки елемент не з'явиться на сторінці з перезавантаженням сторінки
${result} = get is element exist ${locator}
run keyword if ${result} == ${False} wait until keyword succeeds ${retry} ${retry_interval} reload page and fail if element does not exist ${locator}
wait until page does not contain element with reloading
[Arguments] ${locator} ${retry}=5m ${retry_interval}=2s
[Documentation] чекає поки елемент не пропаде зі сторінки з перезавантаженням сторінки
${result} = get is element exist ${locator}
run keyword if ${result} == ${True} wait until keyword succeeds ${retry} ${retry_interval} reload page and fail if element exists ${locator}
wait until tab content is visible
[Arguments] ${tab_link} ${waiting_timeout}=30s ${waiting_error}=Opened tab still not visible
[Documentation] чекає поки контент вказаного табу не буде видимим
${tab_link_href} = __private__get_element_attribute ${tab_link} href
${tab_content_locator} = set variable jquery=${tab_link_href}
wait until element is visible ${tab_content_locator} ${waiting_timeout} ${waiting_error}
reload page and fail if element exists
[Arguments] ${locator}
[Documentation] перезавантажує сторінку і фейлить тест якщо елемент присутній
reload page
${exists} = get is element exist ${locator}
run keyword if ${exists} == ${True} fail
reload page and fail if element does not exist
[Arguments] ${locator}
[Documentation] перезавантажує сторінку і фейлить тест якщо елемент відсутній
reload page
${exists} = get is element exist ${locator}
run keyword if ${exists} == ${False} fail
get is 404 page
[Documentation] перевіряє чи поточна сторінка з 404 помилкою
${exists} = get is element exist ${error_page_404_checker_element_locator}
[Return] ${exists}
wait until 404 page disappears
[Arguments] ${retry}=5m ${retry_interval}=2s
[Documentation] оновлює сторінку і чекає поки не пропаде 404 помилка
${result} = get is 404 page
run keyword if ${result} == ${True} wait until keyword succeeds ${retry} ${retry_interval} reload page and fail if element exists ${error_page_404_checker_element_locator}
########################################################################################################################
################################################### PRIVATE KEYWORDS ###################################################
########################################################################################################################
__private__log
[Arguments] ${msg}
[Documentation] пише в логи
log ${msg}
log to console ${msg}
__private__get_element_attribute
[Arguments] ${locator} ${attribute}
[Documentation] повертає значення атрибуту для вказаного елементу
${value} = get element attribute ${locator}@${attribute}
[Return] ${value}
__private__set_element_visible_in_browser_area
[Arguments] ${locator}
[Documentation] робить елемент видимим у вікні браузера
set element scroll into view ${locator}
__private__get_site_language_code
[Documentation] повертає код поточної мови сайта
${current_language_code} = __private__get_element_attribute ${language_selector_active_element_locator} ${language_selector_active_element_code_attribute_name}
[Return] ${current_language_code}
__private__check_site_language_code
[Arguments] ${language_code}
[Documentation] повертає чи поточна мова сайту відповідає вказаній
${current_language_code} = __private__get_site_language_code
${is_equal} = set variable if "${current_language_code}" == "${language_code}" ${True} ${False}
[Return] ${is_equal}
__private__open_site_language_dropdown_and_select_language_by_code
[Arguments] ${language_code}
[Documentation] відкриває випадаючий список мов, обрає потрібну, чекає перезавантаження сторінки
click visible element ${language_selector_open_element_locator}
${language_selector_list_element_locator} = replace string ${language_selector_list_element_locator_tpl} %code% ${language_code}
click element ${language_selector_list_element_locator}
${language_selector_active_element_locator} = replace string ${language_selector_active_element_by_code_locator_tpl} %code% ${language_code}
wait until page contains element ${language_selector_active_element_locator} 30s Language have not changed
__private__select_classification_code_in_opened_popup
[Arguments] ${code} ${scheme}=${None}
[Documentation] в поточний попап з класифікатором перемикає схему, шукає заданий код в полі пошуку і обирає його
# check scheme
${scheme_is_none} = get variable is none ${scheme}
${scheme} = convert to string ${scheme}
run keyword if ${scheme_is_none} == ${False} and '${scheme}' not in ${site_allowed_schemes} __private__log Scheme "${scheme}" is needed to implement.
return from keyword if ${scheme_is_none} == ${False} and '${scheme}' not in ${site_allowed_schemes}
${scheme_tab_locator} = replace string ${classification_popup_scheme_tab_locator_tpl} %scheme% ${scheme}
${scheme_tab_exists} = get is element exist ${scheme_tab_locator}
run keyword if ${scheme_tab_exists} == ${True} click visible element ${scheme_tab_locator}
run keyword if ${scheme_tab_exists} == ${True} wait until tab content is visible ${scheme_tab_locator}
... ELSE __private__log Classification scheme tab ${scheme} does not exist
# seraching code
input text to visible input and press enter ${classification_popup_search_input_locator} ${code}
${code} = convert to string ${code}
${code_item_locator} = replace string ${classification_popup_serach_item_locator_tpl} %code% ${code}
wait until page contains element ${code_item_locator} 60s Specified classification code was not found
click visible element ${code_item_locator}