Commit a830fbb0f9543a20b8e9f01af1e1fc096d4d023b
1 parent
efbcbc68
Update keyword to work with updated `create_fake_doc`
Also update saving those data returned from `create_fake_doc` into variable and add removing of file after uploading.
Showing
1 changed file
with
5 additions
and
3 deletions
... | ... | @@ -834,13 +834,15 @@ Resource resource.robot |
834 | 834 | |
835 | 835 | Можливість зареєструвати, додати документацію і підтвердити постачальника до закупівлі |
836 | 836 | ${supplier_data}= Підготувати дані про постачальника ${tender_owner} |
837 | - ${filepath}= create_fake_doc | |
837 | + ${file_path} ${file_name} ${file_content}= create_fake_doc | |
838 | 838 | Run as ${tender_owner} |
839 | 839 | ... Створити постачальника, додати документацію і підтвердити його |
840 | 840 | ... ${TENDER['TENDER_UAID']} |
841 | 841 | ... ${supplier_data} |
842 | - ... ${filepath} | |
843 | - Set to dictionary ${USERS.users['${tender_owner}']} award_document=${filepath} | |
842 | + ... ${file_path} | |
843 | + ${doc_id}= get_id_from_doc_name ${file_name} | |
844 | + Set to dictionary ${USERS.users['${tender_owner}']} award_doc_name=${file_name} award_doc_id=${doc_id} award_doc_content=${file_content} | |
845 | + Remove File ${file_path} | |
844 | 846 | |
845 | 847 | |
846 | 848 | Можливість укласти угоду для закупівлі | ... | ... |
Please
register
or
login
to post a comment