How to use generate_html_report method in autotest

Best Python code snippet using autotest_python

gui_env.py

Source:gui_env.py Github

copy

Full Screen

...167 def _simulate_click_on_random_widget(self):168 reward, pos_x, pos_y, increased_delay = self.main_window.simulate_click_on_random_widget()169 self.click_connection_child.send((reward, pos_x, pos_y, increased_delay))170 @Slot()171 def _generate_html_report(self):172 if self.html_report_directory is not None:173 directory = self.html_report_directory174 else:175 clicker_type = self.get_clicker_type()176 directory = os.path.join("coverage-reports", clicker_type, datetime.now().strftime("%Y-%m-%d_%H-%M-%S"))177 self.main_window.generate_html_report(directory=directory)178 @staticmethod179 def get_clicker_type():180 return "gui-env"181 def sample_random_coordinates(self) -> Tuple[int, int]:182 x = self.random_state.randint(0, WINDOW_SIZE[0])183 y = self.random_state.randint(0, WINDOW_SIZE[1])184 return x, y185 def internal_step(self, action: Union[Tuple[int, int], bool]) -> Tuple[np.ndarray, float, bool, dict]:186 self.click_connection_parent.send(action)187 if isinstance(action, bool):188 reward, x, y, increased_delay = self.click_connection_parent.recv()189 else:190 reward, increased_delay = self.click_connection_parent.recv()191 x = action[0]...

Full Screen

Full Screen

daily_pdf_report.py

Source:daily_pdf_report.py Github

copy

Full Screen

...21reports_directory = os.path.abspath(os.path.join(22 MEDIA_ROOT,23 os.path.pardir,24 'reports'))25def generate_html_report(start_time, end_time):26 """Return an rst report for event and movement and the number of them.27 :param start_time: Starting time.28 :param end_time: End time.29 :returns: RST report and the number of event and movement30 :rtype: (str, int, int)31 """32 incident_events = Event.objects.filter(33 date_time__gt=start_time,34 date_time__lt=end_time,35 category=1)36 incident_advisory = Event.objects.filter(37 date_time__gt=start_time,38 date_time__lt=end_time,39 category=2)40 events = Event.objects.filter(41 date_time__gt=start_time,42 date_time__lt=end_time)43 movements = Movement.objects.filter(44 last_updated_time__gt=start_time,45 last_updated_time__lt=end_time)46 context = {47 'incident_events': incident_events,48 'incident_advisory': incident_advisory,49 'movements': movements,50 'start_date': start_time.strftime('%A %d %B %Y'),51 'end_date': end_time.strftime('%H:%M:%S, %A %d %B %Y'),52 }53 report_html = render_to_string(54 'email_templates/daily_alerts.html',55 context)56 return report_html.replace('\n', ''), len(events), len(movements)57def test_html_report():58 """Test for generate_html_report."""59 from datetime import datetime, timedelta60 end_time = datetime.utcnow()61 start_time = end_time - timedelta(days=15)62 html_report, _, _ = generate_html_report(start_time, end_time)63 return html_report64def test_generate_pdf_report():65 """Test for generate_pdf_report."""66 from datetime import datetime, timedelta67 end_time = datetime.utcnow()68 start_time = end_time - timedelta(days=45)69 generate_report(start_time, end_time)70def html_to_pdf(data, filename):71 pdf = pisa.CreatePDF(StringIO.StringIO(data.encode('utf-8')), file(filename, "wb"), encoding='utf-8')72 return not pdf.err73def generate_report(start_time, end_time):74 """Return an rst report for event and movement.75 :param start_time: Starting time.76 :param end_time: End time.77 """78 raw_report, num_event, num_movement = generate_html_report(79 start_time, end_time)80 filename = start_time.strftime('IMMAP_Report_%Y%m%d') + '.pdf'81 file_path = os.path.join(reports_directory, filename)82 if not os.path.exists(reports_directory):83 logger.info('Reports directory not exists')84 os.makedirs(reports_directory)85 else:86 logger.info('Reports directory exists')87 # Put the pdf generation here88 # xhtml2pdf89 success = html_to_pdf(raw_report, file_path)90 if success:91 logger.info(92 'Success to generate daily report for %s in %s' % (start_time.strftime('%Y %m %d'), file_path))...

Full Screen

Full Screen

check_solution.py

Source:check_solution.py Github

copy

Full Screen

...12def check_all_solutions():13 """ Calls check_solution with different solution paths from config file including main solution """14 config = PackageConfig.get_config()15 # TODO: check if config is None16 generate_html_report.generate_html_report(config["solution"])17def check_main_solution():18 config = PackageConfig.get_config()19 # TODO: check if config is None20 # method check_solutions retrieves config from PackageConfig itself21 # remove it from here22 #generate_html_report.generate_html_report([]), True)23 check_solution(config['main_solution'])24def is_cooresponded_solution(sol_path, substr):25 basename = os.path.basename(sol_path)26 #substring of basename or end of all path,27 #second condition allows to test solution by full path28 return substr in basename or sol_path.endswith(substr)29def is_standalone_solution(substr):30 return os.path.isfile(substr) and is_program(substr)31def check_solution(substr):32 config = PackageConfig.get_config()33 # TODO: check if config is None34 # method check_solutions retrieves config from PackageConfig itself35 # remove it from here36 solutions_for_testing = []37 #if full path specified for solution outside config38 if is_standalone_solution(substr):39 solutions_for_testing.append({"source": substr})40 # add_main = False41 else:42 # add_main = is_cooresponded_solution(config["main_solution"], substr)43 for solve in config["solution"]:44 if is_cooresponded_solution(solve["source"], substr):45 solutions_for_testing.append(solve)46 if len(solutions_for_testing) == 0:47 raise PleaseException("There is no such solution")48 # if generate_html:...

Full Screen

Full Screen

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 autotest 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