How to use get_download_directory_base method in toolium

Best Python code snippet using toolium_python

test_download_files.py

Source: test_download_files.py Github

copy

Full Screen

...43 context.driver_wrapper = driver_wrapper44 return context45def test_get_download_directory_base_download_directory_none(context):46 context.download_directory = None47 assert get_download_directory_base(context) is None48def test_get_download_directory_base_no_server_section(context):49 context.download_directory = ""50 context.driver_wrapper.config.remove_option('Server', 'enabled')51 assert get_download_directory_base(context) == os.path.join(DriverWrappersPool.output_directory,52 DOWNLOADS_FOLDER, '')53def test_get_download_directory_base_no_server_section_exception(context):54 context.download_directory = ""55 context.driver_wrapper.config.remove_option('Server', 'enabled')56 DriverWrappersPool.output_directory = os.path.join(os.path.realpath(__file__), 'incorrect_path')57 with pytest.raises(OSError):58 get_download_directory_base(context)59def test_get_download_directory_base_server_disabled(context):60 context.download_directory = ""61 context.driver_wrapper.config.set('Server', 'enabled', 'false')62 assert get_download_directory_base(context) == os.path.join(DriverWrappersPool.output_directory,63 DOWNLOADS_FOLDER, '')64def test_get_download_directory_base_server_enabled_no_driver_section(context):65 context.download_directory = ""66 context.driver_wrapper.config.set('Server', 'enabled', 'true')67 assert get_download_directory_base(context) == "/​tmp/​%s/​" % DOWNLOADS_FOLDER68def test_get_download_directory_base_server_enabled_linux(context):69 context.download_directory = ""70 context.driver_wrapper.config.set('Server', 'enabled', 'true')71 context.driver_wrapper.config.set('Driver', 'type', 'part1-part2-part3-linux')72 assert get_download_directory_base(context) == "/​tmp/​%s/​" % DOWNLOADS_FOLDER73def test_get_download_directory_base_server_enabled_win(context):74 context.download_directory = ""75 context.driver_wrapper.config.set('Server', 'enabled', 'true')76 context.driver_wrapper.config.set('Driver', 'type', 'part1-part2-part3-win')77 assert get_download_directory_base(context) == 'C:\\tmp\\%s\\' % DOWNLOADS_FOLDER78def test_get_downloaded_file_path_server_type_selenoid(context):79 context.driver_wrapper.server_type = 'selenoid'80 toolium.utils.download_files.retrieve_remote_downloaded_file = mock.Mock(return_value='https:/​/​path/​file_name')81 assert get_downloaded_file_path(context, 'file_name') == 'https:/​/​path/​file_name'82def test_get_downloaded_file_path_server_type_unknown(context):83 context.driver_wrapper.server_type = 'unknown'84 context.download_directory_base = '/​'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'...

Full Screen

Full Screen

download_files.py

Source: download_files.py Github

copy

Full Screen

...23from toolium.driver_wrappers_pool import DriverWrappersPool24from toolium.utils.path_utils import makedirs_safe25DOWNLOADS_SERVICE_PORT = 800126DOWNLOADS_FOLDER = 'downloads'27def get_download_directory_base(context):28 """29 Get base folder to download files30 :param context: behave context31 :returns: base folder32 """33 if context.download_directory is None:34 base = None35 elif context.driver_wrapper.config.getboolean_optional('Server', 'enabled'):36 try:37 platform = context.driver_wrapper.config.get('Driver', 'type').split('-')[3]38 except IndexError:39 platform = 'linux'40 if platform.lower().startswith('win'):41 # Windows node...

Full Screen

Full Screen

Blogs

Check out the latest blogs from LambdaTest on this topic:

Starting & growing a QA Testing career

The QA testing career includes following an often long, winding road filled with fun, chaos, challenges, and complexity. Financially, the spectrum is broad and influenced by location, company type, company size, and the QA tester’s experience level. QA testing is a profitable, enjoyable, and thriving career choice.

Your Favorite Dev Browser Has Evolved! The All New LT Browser 2.0

We launched LT Browser in 2020, and we were overwhelmed by the response as it was awarded as the #5 product of the day on the ProductHunt platform. Today, after 74,585 downloads and 7,000 total test runs with an average of 100 test runs each day, the LT Browser has continued to help developers build responsive web designs in a jiffy.

Six Agile Team Behaviors to Consider

Are members of agile teams different from members of other teams? Both yes and no. Yes, because some of the behaviors we observe in agile teams are more distinct than in non-agile teams. And no, because we are talking about individuals!

The Art of Testing the Untestable

It’s strange to hear someone declare, “This can’t be tested.” In reply, I contend that everything can be tested. However, one must be pleased with the outcome of testing, which might include failure, financial loss, or personal injury. Could anything be tested when a claim is made with this understanding?

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