Best Python code snippet using autotest_python
gui_env.py
Source: gui_env.py
...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]...
daily_pdf_report.py
Source: daily_pdf_report.py
...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))...
check_solution.py
Source: check_solution.py
...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:...
Check out the latest blogs from LambdaTest on this topic:
Before we discuss Scala testing, let us understand the fundamentals of Scala and how this programming language is a preferred choice for your development requirements.The popularity and usage of Scala are rapidly rising, evident by the ever-increasing open positions for Scala developers.
So, now that the first installment of this two fold article has been published (hence you might have an idea of what Agile Testing is not in my opinion), I’ve started feeling the pressure to explain what Agile Testing actually means to me.
Did you know that according to Statista, the number of smartphone users will reach 18.22 billion by 2025? Let’s face it, digital transformation is skyrocketing and will continue to do so. This swamps the mobile app development market with various options and gives rise to the need for the best mobile app testing tools
As a developer, checking the cross browser compatibility of your CSS properties is of utmost importance when building your website. I have often found myself excited to use a CSS feature only to discover that it’s still not supported on all browsers. Even if it is supported, the feature might be experimental and not work consistently across all browsers. Ask any front-end developer about using a CSS feature whose support is still in the experimental phase in most prominent web browsers. ????
The count of mobile users is on a steep rise. According to the research, by 2025, it is expected to reach 7.49 billion users worldwide. 70% of all US digital media time comes from mobile apps, and to your surprise, the average smartphone owner uses ten apps per day and 30 apps each month.
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!!