How to use delete_retrieved_downloaded_file method in toolium

Best Python code snippet using toolium_python

test_download_files.py

Source:test_download_files.py Github

copy

Full Screen

...162def test_delete_retrieved_downloaded_file_download_directory_file_dwn(context):163 context.download_directory = "download_path"164 toolium.utils.download_files.os.remove = mock.Mock(return_value=0)165 toolium.utils.download_files.os.rmdir = mock.Mock(return_value=0)166 delete_retrieved_downloaded_file(context, 'file_downloaded', None)167 toolium.utils.download_files.os.remove.assert_called_once_with(os.path.168 join(os.path.dirname(os.path.realpath(__file__)),169 'output', DOWNLOADS_FOLDER, 'download_path',170 'file_downloaded'))171 toolium.utils.download_files.os.rmdir.assert_called_once_with(os.path.172 join(os.path.dirname(os.path.realpath(__file__)),173 'output', DOWNLOADS_FOLDER, 'download_path'))174def test_delete_retrieved_downloaded_file_download_directory_file_retr(context):175 context.download_directory = "download_path"176 toolium.utils.download_files.os.remove = mock.Mock(return_value=0)177 toolium.utils.download_files.os.rmdir = mock.Mock(return_value=0)178 delete_retrieved_downloaded_file(context, 'file_downloaded', 'file_retrieved')179 toolium.utils.download_files.os.remove.assert_called_once_with(os.path.180 join(os.path.dirname(os.path.realpath(__file__)),181 'output', DOWNLOADS_FOLDER, 'download_path',182 'file_retrieved'))183 toolium.utils.download_files.os.rmdir.assert_called_once_with(os.path.184 join(os.path.dirname(os.path.realpath(__file__)),185 'output', DOWNLOADS_FOLDER, 'download_path'))186def test_delete_retrieved_downloaded_file_download_directory_none(context):187 context.download_directory = ''188 toolium.utils.download_files.os.remove = mock.Mock(return_value=0)189 toolium.utils.download_files.os.rmdir = mock.Mock(return_value=0)190 delete_retrieved_downloaded_file(context, 'file_name', None)191 toolium.utils.download_files.os.remove.assert_called_once_with(os.path.192 join(os.path.dirname(os.path.realpath(__file__)),193 'output', 'downloads', 'file_name'))...

Full Screen

Full Screen

download_files.py

Source:download_files.py Github

copy

Full Screen

...172 file_dwn_url = '{url}/{filename}'.format(url=url, filename=file_dwn)173 r_dwn = requests.delete(file_dwn_url)174 print(r_dwn.status_code)175 assert r_dwn.status_code == 200, 'ERROR deleting file "{}": "{}"'.format(file_dwn_url, r_dwn.text)176def delete_retrieved_downloaded_file(context, file_dwn, file_retr):177 """178 Delete from local directory given file name.179 :param context: where you and behave can store information to share around. Automatically managed by behave.180 :param file_dwn: (string) name of the file downloaded.181 :param file_retr: (string) name of the file.182 """183 destination_filename = file_retr if file_retr else file_dwn184 destination_filepath = os.path.join(DriverWrappersPool.output_directory, DOWNLOADS_FOLDER,185 context.download_directory)186 try:187 os.remove(os.path.join(destination_filepath, destination_filename))188 if len(destination_filepath.split(DOWNLOADS_FOLDER)[1]) > 2: # only used in case of session folder189 os.rmdir(destination_filepath)190 except Exception as e:...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run toolium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful