Best Python code snippet using toolium_python
test_download_files.py
Source:test_download_files.py
...123 text = mock.Mock()124 text.xpath.return_value = ['file1.jpg', 'file2.txt']125 toolium.utils.download_files.html.fromstring = mock.Mock(return_value=text)126 assert get_downloaded_files_list(context) == ['file1.jpg', 'file2.txt']127def test_get_remote_node_for_download(context):128 context.driver_wrapper.remote_node = "localhost"129 assert _get_remote_node_for_download(context) == "localhost"130def test_get_download_directory_url_download_directory(context):131 context.download_directory = "/downloads"132 toolium.utils.download_files._get_remote_node_for_download = mock.Mock(return_value='localhost')133 assert _get_download_directory_url(context) == "http://localhost:{}/downloads".format(DOWNLOADS_SERVICE_PORT)134def test_get_download_directory_url_download_directory_none(context):135 context.download_directory = None136 toolium.utils.download_files._get_remote_node_for_download = mock.Mock(return_value='localhost')137 assert _get_download_directory_url(context) == "http://localhost:{}".format(DOWNLOADS_SERVICE_PORT)138def test_delete_remote_downloaded_file_no_server_section(context):139 context.driver_wrapper.config.remove_option('Server', 'enabled')140 response = mock.Mock()141 response.status_code.return_value = 200142 toolium.utils.download_files.requests.delete = mock.Mock(return_value=response)143 delete_remote_downloaded_file(context, "filename")...
download_files.py
Source:download_files.py
...98 else:99 destination_folder = os.path.join(DriverWrappersPool.output_directory, DOWNLOADS_FOLDER,100 context.download_directory)101 return os.listdir(destination_folder)102def _get_remote_node_for_download(context):103 remote_node = context.driver_wrapper.remote_node104 return remote_node105def _get_download_directory_url(context):106 remote_node = _get_remote_node_for_download(context)107 if context.download_directory:108 host = 'http://{}:{}'.format(remote_node, DOWNLOADS_SERVICE_PORT)109 url = urljoin(host, context.download_directory)110 else:111 url = 'http://{}:{}'.format(remote_node, DOWNLOADS_SERVICE_PORT)112 return url113def compare_downloaded_file(context, file_name, expected_folder, max_wait):114 """115 Compare downloaded file with the expected file116 :param context: behave context117 :param file_name: downloaded file118 :param expected_folder: folder with expected files119 :param max_wait: max time to wait120 """...
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!