Best Python code snippet using yandex-tank
docs_gen.py
Source:docs_gen.py  
...50        def escaped(content):51            return method(RSTRenderer.escape(content))52        return escaped53    @staticmethod54    def any_of_table(blocks):55        """56        :type blocks: list of TextBlock57        """58        HEADER = 'any of'59        cnt = len(blocks)60        # no need table for single content61        if cnt < 2:62            return blocks[0] if blocks else ''63        # width = widths of contents + separators64        width = max((len(HEADER), sum([c.padded_width for c in blocks]))) + (cnt + 1)65        height = max([c.height for c in blocks])66        # rows separators67        top_bar = '+{}+'.format('-' * (width - 2))68        header_bar = '+{}+'.format('+'.join(['=' * c.padded_width for c in blocks]))...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!!
