Best Python code snippet using toolium_python
driver_wrapper.py
Source:driver_wrapper.py  
...121    def configure_visual_baseline(self):122        """Configure baseline directory"""123        # Get baseline name and translate config variables124        baseline_name = self.config.get_optional('VisualTests', 'baseline_name', '{Driver_type}')125        baseline_name = self.config.translate_config_variables(baseline_name)126        # Configure baseline directory if baseline name has changed127        if self.baseline_name != baseline_name:128            self.baseline_name = baseline_name129            self.visual_baseline_directory = os.path.join(DriverWrappersPool.visual_baseline_directory,130                                                          get_valid_filename(baseline_name))131    def update_visual_baseline(self):132        """Configure baseline directory after driver is created"""133        # Update baseline with real platformVersion value134        if '{PlatformVersion}' in self.baseline_name:135            try:136                platform_version = self.driver.desired_capabilities['platformVersion']137            except KeyError:138                platform_version = None139            self.baseline_name = self.baseline_name.replace('{PlatformVersion}', str(platform_version))...test_config_parser.py
Source:test_config_parser.py  
...259    ('{Driver_type}/{Server_enabled}', 'firefox/true'),260    ('{AppiumCapabilities_deviceName} {Server}', 'Android Emulator {Server}'),261)262@pytest.mark.parametrize("string_with_variables, translated_string", strings_to_translate)263def test_translate_config_variables(config, string_with_variables, translated_string):...config_parser.py
Source:config_parser.py  
...100            elif property_name.startswith('TOOLIUM'):101                logger.warning('A toolium system property is configured but its name does not math with section'102                               ' and option in value (use TOOLIUM_[SECTION]_[OPTION]=[Section]_[option]=value):'103                               ' %s=%s' % (property_name, property_value))104    def translate_config_variables(self, str_with_variables):105        """106        Translate config variables included in string with format {Section_option}107        :param context: behave context108        :param str_with_variables: string with config variables, i.e. {Driver_type}_{Driver_width}109        :return: string with translated variables110        """111        for section in self.sections():112            for option in self.options(section):113                option_value = self.get(section, option)114                str_with_variables = str_with_variables.replace('{{{0}_{1}}}'.format(section, option), option_value)115        return str_with_variables116    @staticmethod117    def get_config_from_file(conf_properties_files):118        """Reads properties files and saves them to a config object...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!!
