How to use __get_exception_info method in SeleniumBase

Best Python code snippet using SeleniumBase

base_case.py

Source:base_case.py Github

copy

Full Screen

...6456 log_helper.get_html_source_with_base_href(6457 self.driver, self.driver.page_source))6458 except Exception:6459 self.__last_page_source = None6460 def __get_exception_info(self):6461 exc_message = None6462 if sys.version_info[0] >= 3 and hasattr(self, '_outcome') and (6463 hasattr(self._outcome, 'errors') and self._outcome.errors):6464 try:6465 exc_message = self._outcome.errors[0][1][1]6466 except Exception:6467 exc_message = "(Unknown Exception)"6468 else:6469 try:6470 exc_message = sys.last_value6471 except Exception:6472 exc_message = "(Unknown Exception)"6473 return str(exc_message)6474 def __insert_test_result(self, state, err):6475 from seleniumbase.core.testcase_manager import TestcaseDataPayload6476 data_payload = TestcaseDataPayload()6477 data_payload.runtime = int(time.time() * 1000) - self.case_start_time6478 data_payload.guid = self.testcase_guid6479 data_payload.execution_guid = self.execution_guid6480 data_payload.state = state6481 if err:6482 import traceback6483 tb_string = traceback.format_exc()6484 if "Message: " in tb_string:6485 data_payload.message = "Message: " + tb_string.split(6486 "Message: ")[-1]6487 elif "Exception: " in tb_string:6488 data_payload.message = tb_string.split("Exception: ")[-1]6489 elif "Error: " in tb_string:6490 data_payload.message = tb_string.split("Error: ")[-1]6491 else:6492 data_payload.message = self.__get_exception_info()6493 else:6494 test_id = self.__get_test_id_2()6495 if self.is_pytest and test_id in sb_config._results.keys() and (6496 sb_config._results[test_id] == "Skipped"):6497 if self.__skip_reason:6498 data_payload.message = "Skipped: " + self.__skip_reason6499 else:6500 data_payload.message = "Skipped: (no reason given)"6501 self.testcase_manager.update_testcase_data(data_payload)6502 def __add_pytest_html_extra(self):6503 if not self.__added_pytest_html_extra:6504 try:6505 if self.with_selenium:6506 if not self.__last_page_screenshot:...

Full Screen

Full Screen

webdriver_test.py

Source:webdriver_test.py Github

copy

Full Screen

...6335 except Exception:6336 self.__last_page_source = (6337 constants.Warnings.PAGE_SOURCE_UNDEFINED6338 )6339 def __get_exception_info(self):6340 exc_message = None6341 if (6342 python36343 and hasattr(self, "_outcome")6344 and (hasattr(self._outcome, "errors") and self._outcome.errors)6345 ):6346 try:6347 exc_message = self._outcome.errors[0][1][1]6348 except Exception:6349 exc_message = "(Unknown Exception)"6350 else:6351 try:6352 exc_message = sys.last_value6353 except Exception:6354 exc_message = "(Unknown Exception)"6355 return str(exc_message)6356 def __insert_test_result(self, state, err):6357 from seleniumbase.core.testcase_manager import TestcaseDataPayload6358 data_payload = TestcaseDataPayload()6359 data_payload.runtime = int(time.time() * 1000) - self.case_start_time6360 data_payload.guid = self.testcase_guid6361 data_payload.execution_guid = self.execution_guid6362 data_payload.state = state6363 if err:6364 import traceback6365 tb_string = traceback.format_exc()6366 if "Message: " in tb_string:6367 data_payload.message = (6368 "Message: " + tb_string.split("Message: ")[-1]6369 )6370 elif "Exception: " in tb_string:6371 data_payload.message = tb_string.split("Exception: ")[-1]6372 elif "Error: " in tb_string:6373 data_payload.message = tb_string.split("Error: ")[-1]6374 else:6375 data_payload.message = self.__get_exception_info()6376 else:6377 test_id = self.__get_test_id_2()6378 if (6379 self.is_pytest6380 and test_id in sb_config._results.keys()6381 and (sb_config._results[test_id] == "Skipped")6382 ):6383 if self.__skip_reason:6384 data_payload.message = "Skipped: " + self.__skip_reason6385 else:6386 data_payload.message = "Skipped: (no reason given)"6387 self.testcase_manager.update_testcase_data(data_payload)6388 def __add_pytest_html_extra(self):6389 if not self.__added_pytest_html_extra:...

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