Best Python code snippet using toolium_python
test_download_files.py
Source:test_download_files.py  
...105    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(115        os.path.dirname(os.path.realpath(__file__)), 'output', DOWNLOADS_FOLDER, 'download_path'))116def test_get_downloaded_files_list_download_directory_and_server_section(context):117    context.download_directory = "/downloads"118    context.driver_wrapper.config.set('Server', 'enabled', 'true')119    toolium.utils.download_files._get_download_directory_url = mock.Mock(return_value='https://host:8001')120    response = mock.Mock()121    response.read.return_value = "html_response"122    toolium.utils.download_files.urlopen = mock.Mock(return_value=response)123    text = mock.Mock()...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!!
