Commit 3f7e192e0c2b3f704dacd2d6e9fa4588cac1ac9d

Authored by mykhaly
1 parent a830fbb0

Move keywords in base_keywords.robot

Remove useles row `${number_of_lots}=  Get Length
${USERS.users[].initial_data.data.lots}` and use previously saved data
for checking document contents instead of reading that from file.
... ... @@ -171,7 +171,6 @@ Resource resource.robot
171 171
172 172
173 173 Можливість додати документацію до всіх лотів
174   - ${number_of_lots}= Get Length ${USERS.users['${tender_owner}'].initial_data.data.lots}
175 174 :FOR ${lot_index} IN RANGE ${number_of_lots}
176 175 \ Можливість додати документацію до ${lot_index} лоту
177 176
... ... @@ -186,6 +185,16 @@ Resource resource.robot
186 185 Set To Dictionary ${USERS.users['${tender_owner}']} item_data=${item_data}
187 186
188 187
  188 +Звірити відображення заголовку документації до всіх лотів для користувача ${username}
  189 + :FOR ${lot_index} IN RANGE ${number_of_lots}
  190 + \ Звірити відображення поля title документа ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].doc_id} із ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].doc_name} для користувача ${username}
  191 +
  192 +
  193 +Звірити відображення вмісту документації до всіх лотів для користувача ${username}
  194 + :FOR ${lot_index} IN RANGE ${number_of_lots}
  195 + \ Звірити відображення вмісту документа ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].doc_id} з ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].doc_content} для користувача ${username}
  196 +
  197 +
189 198 Можливість видалити предмет закупівлі з ${lot_index} лоту
190 199 ${lot_id}= get_id_from_object ${USERS.users['${tender_owner}'].tender_data.data.lots[${lot_index}]}
191 200 Run As ${tender_owner} Видалити предмет закупівлі ${TENDER['TENDER_UAID']} ${USERS.users['${tender_owner}'].item_data.item_id} ${lot_id}
... ... @@ -235,19 +244,6 @@ Resource resource.robot
235 244 Звірити поле тендера із значенням ${username} ${TENDER['TENDER_UAID']} ${data} ${field} ${lot_id}
236 245
237 246
238   -Звірити відображення заголовку документації до всіх лотів для користувача ${username}
239   - ${number_of_lots}= Get Length ${USERS.users['${tender_owner}'].initial_data.data.lots}
240   - :FOR ${lot_index} IN RANGE ${number_of_lots}
241   - \ Звірити відображення поля title документа ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].doc_id} із ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].filepath} для користувача ${username}
242   -
243   -
244   -Звірити відображення вмісту документації до всіх лотів для користувача ${username}
245   - ${number_of_lots}= Get Length ${USERS.users['${tender_owner}'].initial_data.data.lots}
246   - :FOR ${lot_index} IN RANGE ${number_of_lots}
247   - \ ${doc_content}= Get File ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].filepath}
248   - \ Звірити відображення вмісту документа ${USERS.users['${tender_owner}'].lots_documents[${lot_index}].doc_id} з ${doc_content} для користувача ${username}
249   -
250   -
251 247 Звірити відображення поля ${field} у новоствореному лоті для усіх користувачів
252 248 :FOR ${username} IN ${viewer} ${tender_owner} ${provider} ${provider1}
253 249 \ Звірити відображення поля ${field} у новоствореному лоті для користувача ${username}
... ...
Please register or login to post a comment