How to use retrieve_remote_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

...85 context.download_directory = 'path'86 assert get_downloaded_file_path(context, 'file_name') == '/path/file_name'87def test_retrieve_remote_downloaded_file_download_directory_none(context):88 context.download_directory = None89 assert retrieve_remote_downloaded_file(context, 'file_name') is None90def test_retrieve_remote_downloaded_no_server_section(context):91 context.download_directory = 'donwload_path'92 context.driver_wrapper.config.remove_option('Server', 'enabled')93 assert retrieve_remote_downloaded_file(context, 'file_name') is None94def test_retrieve_remote_downloaded_file_download_directory_and_server_section(context):95 context.download_directory = "/downloads"96 context.driver_wrapper.config.set('Server', 'enabled', 'true')97 toolium.utils.download_files._get_download_directory_url = mock.Mock(return_value='https://host:8001')98 toolium.utils.download_files.makedirs_safe = mock.Mock(return_value=0)99 toolium.utils.download_files.urlretrieve = mock.Mock(return_value=0)100 assert retrieve_remote_downloaded_file(context, 'file_name') == '/downloads/file_name'101 toolium.utils.download_files.urlretrieve.assert_called_once_with('https://host:8001/file_name',102 '/downloads/file_name')103def test_get_downloaded_files_list_download_directory_none(context):104 context.download_directory = None105 toolium.utils.download_files.os.listdir = mock.Mock(return_value=['file1.jpg', 'file2.txt'])106 assert get_downloaded_files_list(context) == ['file1.jpg', 'file2.txt']107 toolium.utils.download_files.os.listdir.assert_called_once_with(os.path.join(108 os.path.dirname(os.path.realpath(__file__)), 'output', 'downloads'))109def test_get_downloaded_files_list_no_server_section(context):110 context.download_directory = 'download_path'111 context.driver_wrapper.config.remove_option('Server', 'enabled')112 toolium.utils.download_files.os.listdir = mock.Mock(return_value=['file1.jpg', 'file2.txt'])113 assert get_downloaded_files_list(context) == ['file1.jpg', 'file2.txt']114 toolium.utils.download_files.os.listdir.assert_called_once_with(os.path.join(...

Full Screen

Full Screen

download_files.py

Source:download_files.py Github

copy

Full Screen

...60 # if context.driver_wrapper.server_type in ['ggr', 'selenoid']:61 # downloaded_file = Selenoid(context.driver_wrapper).download_file(file_name)62 # elif context.driver_wrapper.server_type == 'grid':63 if context.driver_wrapper.server_type in ['ggr', 'selenoid', 'grid']:64 downloaded_file = retrieve_remote_downloaded_file(context, file_name)65 else:66 downloaded_file = os.path.join(context.download_directory_base, context.download_directory, file_name)67 return downloaded_file68def retrieve_remote_downloaded_file(context, filename, destination_filename=None):69 """70 Retrieves a file downloaded in a remote node and saves it in the output folder71 :param context: behave context72 :param filename: downloaded file73 :param destination_filename: local destination name74 :returns: destination file path75 """76 destination_filepath = None77 if context.download_directory is not None and context.driver_wrapper.config.getboolean_optional('Server',78 'enabled'):79 url = _get_download_directory_url(context)80 file_url = '%s/%s' % (url, filename)81 destination_folder = os.path.join(DriverWrappersPool.output_directory, DOWNLOADS_FOLDER,82 context.download_directory)...

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