Report generated on 24-Nov-2023 at 12:27:52 by pytest-html v2.1.1
Packages | {"pluggy": "0.13.1", "py": "1.9.0", "pytest": "7.2.2"} |
Platform | Windows-10-10.0.19041-SP0 |
Plugins | {"allure-pytest": "2.8.18", "datadir": "1.3.1", "html": "2.1.1", "metadata": "1.10.0", "order": "1.1.0", "xdist": "3.2.1"} |
Python | 3.8.5 |
62 tests ran in 7064.45 seconds.
(Un)check the boxes to filter the results.
59 passed, 0 skipped, 3 failed, 0 errors, 0 expected failures, 0 unexpected passesResult | Test | Duration | Links |
---|---|---|---|
No results found. Try to check the filters | |||
Failed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Single_course_regular_payment_with_EMI_Propelld | 25.54 | |
self = <test_CPL_with_EMI.TestCustomRegularEMI object at 0x000001C7C71784C0> testdata = {'payment_details': {'advance-amount': '', 'city': 'Bangalore', 'contact_number': '9123456789', 'country': 'India', ...}} @pytest.mark.test_details("0", "high", "Custom Regular Payment EMI", "Pradeep") def test_Single_course_regular_payment_with_EMI_Propelld(self, testdata): """ Objective: Create payment details with the emi option Propelld india single course regular paymnet Step 01: Select EMI option as Propelld and Create a CPL link from RevX Step 02: Verify the Cart amount Step 03: Land on Cart page and check the 3rd step is a Propelld gateway or not """ selenium_helper.close_all_window() # Step 01: Select EMI option as Propelld and Create a CPL link from RevX > net_price,email = revx_prod_helper.create_payment(testdata['payment_details']) test_production\test_CPL_with_EMI.py:69: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helper\revx_prod_helper.py:95: in create_payment revx_page.select_country.wait_for_select_values_to_populate(8) core\page_factory.py:44: in __getattr__ logging.debug(f"the current locator to be found {loc} on url {self.driver.current_url}") c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webdriver.py:669: in current_url return self.execute(Command.GET_CURRENT_URL)['value'] c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webdriver.py:321: in execute self.error_handler.check_response(response) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x000001C7C71D8C70> response = {'status': 500, 'value': '{"value":{"data":{"text":"Invalid Email"},"error":"unexpected alert open","message":"unexpec...07FF74E08D3A3]\\n\\tBaseThreadInitThunk [0x00007FFBC81D7344+20]\\n\\tRtlUserThreadStart [0x00007FFBC98626B1+33]\\n"}}'} def check_response(self, response): """ Checks that a JSON response from the WebDriver does not have an error. :Args: - response - The JSON response from the WebDriver server as a dictionary object. :Raises: If the response contains an error message. """ status = response.get('status', None) if status is None or status == ErrorCode.SUCCESS: return value = None message = response.get("message", "") screen = response.get("screen", "") stacktrace = None if isinstance(status, int): value_json = response.get('value', None) if value_json and isinstance(value_json, basestring): import json try: value = json.loads(value_json) if len(value.keys()) == 1: value = value['value'] status = value.get('error', None) if status is None: status = value["status"] message = value["value"] if not isinstance(message, basestring): value = message message = message.get('message') else: message = value.get('message', None) except ValueError: pass exception_class = ErrorInResponseException if status in ErrorCode.NO_SUCH_ELEMENT: exception_class = NoSuchElementException elif status in ErrorCode.NO_SUCH_FRAME: exception_class = NoSuchFrameException elif status in ErrorCode.NO_SUCH_WINDOW: exception_class = NoSuchWindowException elif status in ErrorCode.STALE_ELEMENT_REFERENCE: exception_class = StaleElementReferenceException elif status in ErrorCode.ELEMENT_NOT_VISIBLE: exception_class = ElementNotVisibleException elif status in ErrorCode.INVALID_ELEMENT_STATE: exception_class = InvalidElementStateException elif status in ErrorCode.INVALID_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER: exception_class = InvalidSelectorException elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE: exception_class = ElementNotSelectableException elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE: exception_class = ElementNotInteractableException elif status in ErrorCode.INVALID_COOKIE_DOMAIN: exception_class = InvalidCookieDomainException elif status in ErrorCode.UNABLE_TO_SET_COOKIE: exception_class = UnableToSetCookieException elif status in ErrorCode.TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.SCRIPT_TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.UNKNOWN_ERROR: exception_class = WebDriverException elif status in ErrorCode.UNEXPECTED_ALERT_OPEN: exception_class = UnexpectedAlertPresentException elif status in ErrorCode.NO_ALERT_OPEN: exception_class = NoAlertPresentException elif status in ErrorCode.IME_NOT_AVAILABLE: exception_class = ImeNotAvailableException elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED: exception_class = ImeActivationFailedException elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS: exception_class = MoveTargetOutOfBoundsException elif status in ErrorCode.JAVASCRIPT_ERROR: exception_class = JavascriptException elif status in ErrorCode.SESSION_NOT_CREATED: exception_class = SessionNotCreatedException elif status in ErrorCode.INVALID_ARGUMENT: exception_class = InvalidArgumentException elif status in ErrorCode.NO_SUCH_COOKIE: exception_class = NoSuchCookieException elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN: exception_class = ScreenshotException elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED: exception_class = ElementClickInterceptedException elif status in ErrorCode.INSECURE_CERTIFICATE: exception_class = InsecureCertificateException elif status in ErrorCode.INVALID_COORDINATES: exception_class = InvalidCoordinatesException elif status in ErrorCode.INVALID_SESSION_ID: exception_class = InvalidSessionIdException elif status in ErrorCode.UNKNOWN_METHOD: exception_class = UnknownMethodException else: exception_class = WebDriverException if value == '' or value is None: value = response['value'] if isinstance(value, basestring): if exception_class == ErrorInResponseException: raise exception_class(response, value) raise exception_class(value) if message == "" and 'message' in value: message = value['message'] screen = None if 'screen' in value: screen = value['screen'] stacktrace = None if 'stackTrace' in value and value['stackTrace']: stacktrace = [] try: for frame in value['stackTrace']: line = self._value_or_default(frame, 'lineNumber', '') file = self._value_or_default(frame, 'fileName', '<anonymous>') if line: file = "%s:%s" % (file, line) meth = self._value_or_default(frame, 'methodName', '<anonymous>') if 'className' in frame: meth = "%s.%s" % (frame['className'], meth) msg = " at %s (%s)" msg = msg % (meth, file) stacktrace.append(msg) except TypeError: pass if exception_class == ErrorInResponseException: raise exception_class(response, message) elif exception_class == UnexpectedAlertPresentException: alert_text = None if 'data' in value: alert_text = value['data'].get('text') elif 'alert' in value: alert_text = value['alert'].get('text') > raise exception_class(message, screen, stacktrace, alert_text) E selenium.common.exceptions.UnexpectedAlertPresentException: Alert Text: Invalid Email E Message: unexpected alert open: {Alert text : Invalid Email} E (Session info: chrome=119.0.6045.160) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\errorhandler.py:241: UnexpectedAlertPresentException -------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan | |||
Failed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_single_learner_multiple_bundle_with_discount | 109.79 | |
self = <test_custom_complimentary.TestCustomComplimentary object at 0x000001C7C719AEE0> testdata = {'payment_details': {'advance-amount': '', 'city': 'Bangalore', 'contact_number': 1234567890, 'country': 'India', ...}} @pytest.mark.test_details("0", "high", "Custom Complimentary Payment", "Pradeep") def test_create_custom_complimentary_single_learner_multiple_bundle_with_discount(self, testdata): """ Objective: Create payment details with the following options, Payment mode: Custom Payment Type: Complimentary Payment Learner: Multiple Course: Multiple """ # Creating the order/Generating the order for regular net_price,email = revx_prod_helper.create_payment(testdata['payment_details']) # Verifying the Payment Generate Link Message > paymnet_link = revx_prod_helper.verify_custom_link_message(testdata['payment_details']['customer_email']) test_production\test_custom_complimentary.py:126: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helper\revx_prod_helper.py:322: in verify_custom_link_message revx_page.span_custom_link_messages.scroll_to_element() _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <pages.revx_page.RevxPage object at 0x000001C7C73C0460>, loc = 'span_custom_link_messages' def __getattr__(self, loc): logging.debug(f"the current locator to be found {loc} on url {self.driver.current_url}") if loc in self.locators.keys(): error = "" for loc_pair in self.locators[loc]: loc_pair[0] = self.TYPE_OF_LOCATORS[loc_pair[0].lower()] loc_pair = tuple(loc_pair) try: element = WebDriverWait(self.driver, self.timeout).until( EC.presence_of_element_located(loc_pair) ) except (StaleElementReferenceException, NoSuchElementException, TimeoutException) as e: error = e logging.warning(f"the locator {loc} on url {self.driver.current_url} is not present") continue try: element = WebDriverWait(self.driver, self.timeout).until( EC.visibility_of_element_located(loc_pair) ) except (StaleElementReferenceException, NoSuchElementException, TimeoutException) as e: error = e logging.warning(f"the locator {loc} on url {self.driver.current_url} is not visible") continue element = self.get_web_element(*loc_pair) element._locator = loc_pair logging.debug(f"the locator {loc} is found!") return element > raise NoSuchElementException("An exception of type " + type(error).__name__ + " occurred. With Element -: " + loc) E selenium.common.exceptions.NoSuchElementException: Message: An exception of type TimeoutException occurred. With Element -: span_custom_link_messages core\page_factory.py:72: NoSuchElementException -------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 164 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 310 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 157848.60 [33mWARNING [0m setup:page_factory.py:56 the locator span_custom_link_messages on url https://i9simplex.simplilearn.com/sso/payment is not present | |||
Failed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_single_cohort_without_discount | 172.96 | |
email = 'simplilearnautomation+prod1700808434.503252@simplilearn.net', final_cart_amount = '1501.20' emi_option_choosen = '' def verify_payment_page(email,final_cart_amount,emi_option_choosen=''): revx_page = RevxPage(pytest.driver) # cart summary section selenium_helper.is_locator_present(revx_page.locators['proceed_button_in_cart_summary'],5) logging.info("In CART SUMMARY Section\n") revx_page.proceed_button_in_cart_summary.scroll_to_element() time.sleep(2) revx_page.proceed_button_in_cart_summary.click_button() logging.info("Clicked on Proceed button in CART SUMMARY Section") # learner details section logging.info("In LEARNER DETAILS Section\n") try: selenium_helper.is_locator_present(revx_page.locators['text_box_name_in_learner_details_section'],5) time.sleep(2) revx_page.text_box_name_in_learner_details_section.clear_text() revx_page.text_box_name_in_learner_details_section.set_text('Simplilearn Automation') revx_page.email_in_lerner_detail_section.click_button() time.sleep(1) revx_page.confirm_email_learner_detail_section.set_text(email) time.sleep(1) try: revx_page.dropDown_stateSelection_learner_detail_section.select_element_by_index(1) logging.info("State selected in Learner Details Section") except Exception as e: logging.info("State Selection is not appearing",exc_info=True) pass if final_cart_amount != '0.00': revx_page.proceed_button_in_learner_details_section.scroll_to_element() time.sleep(2) revx_page.proceed_button_in_learner_details_section.click_button() logging.info("Clicked on Proceed button in LEARNER DETAILS Section") time.sleep(2) except Exception as e: logging.info("Exception Occurred in LEARNER DETAILS Section",exc_info=True) pytest.fail("Faild in LEARNER DETAILS Section") # SECURE PAYMENT section logging.info("In SECURE PAYMENT Section\n") if final_cart_amount != '0.00': all_payment_gate_ways_list = [] try: selenium_helper.is_locator_present(revx_page.locators['all_paymnet_gateways'],10) all_payment_gate_ways = revx_page.all_paymnet_gateways.get_all_elements() for paymnet_gateway in all_payment_gate_ways: if paymnet_gateway.is_displayed(): paymnet_gateway.scroll_to_element() time.sleep(1) > paymnet_gateway.click() helper\revx_prod_helper.py:455: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.webelement.WebElement (session="315d52f05e1e23f984ae15f0a2ff4aae", element="AFF8D360DA83E82CAD76733D1C3AF638_element_673")> def click(self): """Clicks the element.""" > self._execute(Command.CLICK_ELEMENT) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webelement.py:80: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.webelement.WebElement (session="315d52f05e1e23f984ae15f0a2ff4aae", element="AFF8D360DA83E82CAD76733D1C3AF638_element_673")> command = 'clickElement' params = {'id': 'AFF8D360DA83E82CAD76733D1C3AF638_element_673', 'sessionId': '315d52f05e1e23f984ae15f0a2ff4aae'} def _execute(self, command, params=None): """Executes a command against the underlying HTML element. Args: command: The name of the command to _execute as a string. params: A dictionary of named parameters to send with the command. Returns: The command's JSON response loaded into a dictionary object. """ if not params: params = {} params['id'] = self._id > return self._parent.execute(command, params) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webelement.py:633: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.chrome.webdriver.WebDriver (session="315d52f05e1e23f984ae15f0a2ff4aae")> driver_command = 'clickElement', params = {'id': 'AFF8D360DA83E82CAD76733D1C3AF638_element_673'} def execute(self, driver_command, params=None): """ Sends a command to be executed by a command.CommandExecutor. :Args: - driver_command: The name of the command to execute as a string. - params: A dictionary of named parameters to send with the command. :Returns: The command's JSON response loaded into a dictionary object. """ if self.session_id is not None: if not params: params = {'sessionId': self.session_id} elif 'sessionId' not in params: params['sessionId'] = self.session_id params = self._wrap_value(params) response = self.command_executor.execute(driver_command, params) if response: > self.error_handler.check_response(response) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webdriver.py:321: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ self = <selenium.webdriver.remote.errorhandler.ErrorHandler object at 0x000001C7C71D8C70> response = {'status': 404, 'value': '{"value":{"error":"stale element reference","message":"stale element reference: stale elemen...07FF74E08D3A3]\\n\\tBaseThreadInitThunk [0x00007FFBC81D7344+20]\\n\\tRtlUserThreadStart [0x00007FFBC98626B1+33]\\n"}}'} def check_response(self, response): """ Checks that a JSON response from the WebDriver does not have an error. :Args: - response - The JSON response from the WebDriver server as a dictionary object. :Raises: If the response contains an error message. """ status = response.get('status', None) if status is None or status == ErrorCode.SUCCESS: return value = None message = response.get("message", "") screen = response.get("screen", "") stacktrace = None if isinstance(status, int): value_json = response.get('value', None) if value_json and isinstance(value_json, basestring): import json try: value = json.loads(value_json) if len(value.keys()) == 1: value = value['value'] status = value.get('error', None) if status is None: status = value["status"] message = value["value"] if not isinstance(message, basestring): value = message message = message.get('message') else: message = value.get('message', None) except ValueError: pass exception_class = ErrorInResponseException if status in ErrorCode.NO_SUCH_ELEMENT: exception_class = NoSuchElementException elif status in ErrorCode.NO_SUCH_FRAME: exception_class = NoSuchFrameException elif status in ErrorCode.NO_SUCH_WINDOW: exception_class = NoSuchWindowException elif status in ErrorCode.STALE_ELEMENT_REFERENCE: exception_class = StaleElementReferenceException elif status in ErrorCode.ELEMENT_NOT_VISIBLE: exception_class = ElementNotVisibleException elif status in ErrorCode.INVALID_ELEMENT_STATE: exception_class = InvalidElementStateException elif status in ErrorCode.INVALID_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR \ or status in ErrorCode.INVALID_XPATH_SELECTOR_RETURN_TYPER: exception_class = InvalidSelectorException elif status in ErrorCode.ELEMENT_IS_NOT_SELECTABLE: exception_class = ElementNotSelectableException elif status in ErrorCode.ELEMENT_NOT_INTERACTABLE: exception_class = ElementNotInteractableException elif status in ErrorCode.INVALID_COOKIE_DOMAIN: exception_class = InvalidCookieDomainException elif status in ErrorCode.UNABLE_TO_SET_COOKIE: exception_class = UnableToSetCookieException elif status in ErrorCode.TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.SCRIPT_TIMEOUT: exception_class = TimeoutException elif status in ErrorCode.UNKNOWN_ERROR: exception_class = WebDriverException elif status in ErrorCode.UNEXPECTED_ALERT_OPEN: exception_class = UnexpectedAlertPresentException elif status in ErrorCode.NO_ALERT_OPEN: exception_class = NoAlertPresentException elif status in ErrorCode.IME_NOT_AVAILABLE: exception_class = ImeNotAvailableException elif status in ErrorCode.IME_ENGINE_ACTIVATION_FAILED: exception_class = ImeActivationFailedException elif status in ErrorCode.MOVE_TARGET_OUT_OF_BOUNDS: exception_class = MoveTargetOutOfBoundsException elif status in ErrorCode.JAVASCRIPT_ERROR: exception_class = JavascriptException elif status in ErrorCode.SESSION_NOT_CREATED: exception_class = SessionNotCreatedException elif status in ErrorCode.INVALID_ARGUMENT: exception_class = InvalidArgumentException elif status in ErrorCode.NO_SUCH_COOKIE: exception_class = NoSuchCookieException elif status in ErrorCode.UNABLE_TO_CAPTURE_SCREEN: exception_class = ScreenshotException elif status in ErrorCode.ELEMENT_CLICK_INTERCEPTED: exception_class = ElementClickInterceptedException elif status in ErrorCode.INSECURE_CERTIFICATE: exception_class = InsecureCertificateException elif status in ErrorCode.INVALID_COORDINATES: exception_class = InvalidCoordinatesException elif status in ErrorCode.INVALID_SESSION_ID: exception_class = InvalidSessionIdException elif status in ErrorCode.UNKNOWN_METHOD: exception_class = UnknownMethodException else: exception_class = WebDriverException if value == '' or value is None: value = response['value'] if isinstance(value, basestring): if exception_class == ErrorInResponseException: raise exception_class(response, value) raise exception_class(value) if message == "" and 'message' in value: message = value['message'] screen = None if 'screen' in value: screen = value['screen'] stacktrace = None if 'stackTrace' in value and value['stackTrace']: stacktrace = [] try: for frame in value['stackTrace']: line = self._value_or_default(frame, 'lineNumber', '') file = self._value_or_default(frame, 'fileName', '<anonymous>') if line: file = "%s:%s" % (file, line) meth = self._value_or_default(frame, 'methodName', '<anonymous>') if 'className' in frame: meth = "%s.%s" % (frame['className'], meth) msg = " at %s (%s)" msg = msg % (meth, file) stacktrace.append(msg) except TypeError: pass if exception_class == ErrorInResponseException: raise exception_class(response, message) elif exception_class == UnexpectedAlertPresentException: alert_text = None if 'data' in value: alert_text = value['data'].get('text') elif 'alert' in value: alert_text = value['alert'].get('text') raise exception_class(message, screen, stacktrace, alert_text) > raise exception_class(message, screen, stacktrace) E selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: stale element not found E (Session info: chrome=119.0.6045.160) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\errorhandler.py:242: StaleElementReferenceException During handling of the above exception, another exception occurred: self = <test_custom_regular_payment.TestCustomRegularPayment object at 0x000001C7C71D8F70> testdata = {'payment_details': {'advance-amount': '', 'city': 'Singapore', 'contact_number': 1234567890, 'country': 'Singapore', ...}} @pytest.mark.test_details("0", "high", "Custom Regular Payment", "Pradeep") def test_create_custom_regular_single_learner_single_cohort_without_discount(self, testdata): """ Objective: Create payment details with the following options, Payment mode: Custom Payment Type: backend Payment Learner: Multiple Course: single course without discount """ # Creating the order/Generating the order for regular net_price,email = revx_prod_helper.create_payment(testdata['payment_details']) # Verifying the Payment Generate Link Message paymnet_link = revx_helper.verify_custom_link_message(testdata['payment_details']['customer_email']) logging.info(f"Payment link Generated is : {paymnet_link}") > revx_prod_helper.verify_payment_amount(paymnet_link,net_price, email) test_production\test_custom_regular_payment.py:255: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ helper\revx_prod_helper.py:358: in verify_payment_amount verify_payment_page(email,final_cart_amount,emi_option_choosen) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ email = 'simplilearnautomation+prod1700808434.503252@simplilearn.net', final_cart_amount = '1501.20' emi_option_choosen = '' def verify_payment_page(email,final_cart_amount,emi_option_choosen=''): revx_page = RevxPage(pytest.driver) # cart summary section selenium_helper.is_locator_present(revx_page.locators['proceed_button_in_cart_summary'],5) logging.info("In CART SUMMARY Section\n") revx_page.proceed_button_in_cart_summary.scroll_to_element() time.sleep(2) revx_page.proceed_button_in_cart_summary.click_button() logging.info("Clicked on Proceed button in CART SUMMARY Section") # learner details section logging.info("In LEARNER DETAILS Section\n") try: selenium_helper.is_locator_present(revx_page.locators['text_box_name_in_learner_details_section'],5) time.sleep(2) revx_page.text_box_name_in_learner_details_section.clear_text() revx_page.text_box_name_in_learner_details_section.set_text('Simplilearn Automation') revx_page.email_in_lerner_detail_section.click_button() time.sleep(1) revx_page.confirm_email_learner_detail_section.set_text(email) time.sleep(1) try: revx_page.dropDown_stateSelection_learner_detail_section.select_element_by_index(1) logging.info("State selected in Learner Details Section") except Exception as e: logging.info("State Selection is not appearing",exc_info=True) pass if final_cart_amount != '0.00': revx_page.proceed_button_in_learner_details_section.scroll_to_element() time.sleep(2) revx_page.proceed_button_in_learner_details_section.click_button() logging.info("Clicked on Proceed button in LEARNER DETAILS Section") time.sleep(2) except Exception as e: logging.info("Exception Occurred in LEARNER DETAILS Section",exc_info=True) pytest.fail("Faild in LEARNER DETAILS Section") # SECURE PAYMENT section logging.info("In SECURE PAYMENT Section\n") if final_cart_amount != '0.00': all_payment_gate_ways_list = [] try: selenium_helper.is_locator_present(revx_page.locators['all_paymnet_gateways'],10) all_payment_gate_ways = revx_page.all_paymnet_gateways.get_all_elements() for paymnet_gateway in all_payment_gate_ways: if paymnet_gateway.is_displayed(): paymnet_gateway.scroll_to_element() time.sleep(1) paymnet_gateway.click() paymnet_selection = paymnet_gateway.text if paymnet_selection not in all_payment_gate_ways_list: all_payment_gate_ways_list.append(paymnet_selection) logging.info(f"########## {paymnet_selection} ##########") time.sleep(2) if paymnet_selection in ['Credit Card','Debit Card']: revx_page.card_no.scroll_to_element() time.sleep(1) revx_page.card_no.clear_text() revx_page.card_no.set_text(1111111111111111) revx_page.name_on_card.clear_text() revx_page.name_on_card.set_text('Automation Team') revx_page.card_expiry_month.select_element_by_index(1) revx_page.card_expiry_year.select_element_by_index(1) revx_page.CVV.clear_text() revx_page.CVV.set_text(123) revx_page.dropdown_card_type.select_element_by_index(1) logging.info("Card Details entered") assert selenium_helper.is_locator_present(revx_page.locators['credit_and_debit_card_payment_button'],3) logging.info("Payment Button is Present\n") elif paymnet_selection in ['Net Banking','UPI','EMI','ShopSe EMI','']: if paymnet_selection == 'Net Banking': revx_page.net_banking_dropdown.select_element_by_index(1) assert selenium_helper.is_locator_present(revx_page.locators['common_button_pay_securely'],5) logging.info("Payment button present\n") elif paymnet_selection in ['2Checkout']: assert selenium_helper.is_locator_present(revx_page.locators['2checkout_paymnet_button'],5) logging.info("Payment button present\n") elif paymnet_selection in ['Splitit']: selenium_helper.is_locator_present(revx_page.locators['splitit_3month_emi'],15) pytest.driver.switch_to.frame(revx_page.slpitit_card_name_iframe) revx_page.slpit_it_name_on_card.clear_text() revx_page.slpit_it_name_on_card.set_text('Simplilearn Automation') pytest.driver.switch_to.default_content() pytest.driver.switch_to.frame(revx_page.slpitit_card_no_iframe) revx_page.splitit_card_no.clear_text() revx_page.splitit_card_no.set_text(1111111111111111) pytest.driver.switch_to.default_content() pytest.driver.switch_to.frame(revx_page.slpitit_card_expiry_iframe) revx_page.splitit_card_expiry.clear_text() revx_page.splitit_card_expiry.set_text('12/99') pytest.driver.switch_to.default_content() pytest.driver.switch_to.frame(revx_page.slpitit_card_cvv_iframe) revx_page.splitit_cvv.clear_text() revx_page.splitit_cvv.set_text(123) pytest.driver.switch_to.default_content() revx_page.splitit_3month_emi.click_button() logging.info("Details entered") assert selenium_helper.is_locator_present(revx_page.locators['splitit_pay_button'],5) logging.info("Payment Button is Appearing\n") elif paymnet_selection in['PayPal']: pytest.driver.switch_to.frame(revx_page.paypal_iframe) assert selenium_helper.is_locator_present(revx_page.locators['paypal_pay_button'],5) logging.info("Payment button present\n") pytest.driver.switch_to.default_content() elif paymnet_selection in['Klarna']: try: assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") logging.info("Payment button present\n") time.sleep(2) except Exception as e: logging.info("Exception in Klarna Paymanet option",exc_info=True) pass elif 'CCAvenue' in paymnet_selection: logging.info("CC Avenue Option is appearing") logging.info("########## CC Avenue ##########") assert selenium_helper.is_locator_present(revx_page.locators['common_button_pay_securely'],5) logging.info("Payment button present\n") except Exception as e: logging.info("Error in payment gateways",exc_info=True) > pytest.fail("Failed in Payment Gateways") E Failed: Failed in Payment Gateways helper\revx_prod_helper.py:538: Failed -------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1501.20 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:253 Payment link Generated is : https://www.simplilearn.com/cart/add-cp-to-cart?order_no=CSTM_FYXI5KYRMOV [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1501.20 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1501.20 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure//checkout/details?authtoken=b59a291d0fd4742c2739f8fe4c767beceb04cb174b08dd5aad1c224a1b5de121 is not present [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure//checkout/details?authtoken=b59a291d0fd4742c2739f8fe4c767beceb04cb174b08dd5aad1c224a1b5de121 is not present [32mINFO [0m setup:revx_prod_helper.py:430 State Selection is not appearing Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 427, in verify_payment_page revx_page.dropDown_stateSelection_learner_detail_section.select_element_by_index(1) File "C:\test_repos\revx_test_python\core\page_factory.py", line 72, in __getattr__ raise NoSuchElementException("An exception of type " + type(error).__name__ + " occurred. With Element -: " + loc) selenium.common.exceptions.NoSuchElementException: Message: An exception of type TimeoutException occurred. With Element -: dropDown_stateSelection_learner_detail_section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Splitit ########## [32mINFO [0m setup:revx_prod_helper.py:510 Details entered [32mINFO [0m setup:revx_prod_helper.py:513 Payment Button is Appearing [32mINFO [0m setup:revx_prod_helper.py:537 Error in payment gateways Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 455, in verify_payment_page paymnet_gateway.click() File "c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webelement.py", line 80, in click self._execute(Command.CLICK_ELEMENT) File "c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webelement.py", line 633, in _execute return self._parent.execute(command, params) File "c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webdriver.py", line 321, in execute self.error_handler.check_response(response) File "c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\errorhandler.py", line 242, in check_response raise exception_class(message, screen, stacktrace) selenium.common.exceptions.StaleElementReferenceException: Message: stale element reference: stale element not found (Session info: chrome=119.0.6045.160) | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Single_course_regular_payment_with_EMI_ZestMoney | 104.47 | |
-------------------------------Captured log setup------------------------------- [32mINFO [0m setup:conftest.py:167 reading config from path "config.json" [32mINFO [0m setup:conftest.py:142 creating driver for provided browser - {browser_name} -------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [32mINFO [0m setup:revx_prod_helper.py:136 Emi option is selected as: Zest Money [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-15) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 25275.60 [32mINFO [0m setup:test_CPL_with_EMI.py:27 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=a8cd5da6887e1d7f3012698d6bec3793b281b1e619867a22f050b684d7b81d87 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 25275.60 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 25275.60 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Zestmoney ########## [32mINFO [0m setup:revx_prod_helper.py:542 The choosen EMI opton Zestmoney is present in ['Zestmoney'] [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Single_course_regular_payment_with_EMI_Liquiloan | 99.23 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:57 EMI with Liquiloan [32mINFO [0m setup:revx_prod_helper.py:59 Email generated for EMI option with Liquiloan [32mINFO [0m setup:revx_prod_helper.py:136 Emi option is selected as: Liquiloan [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-15) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 25275.60 [32mINFO [0m setup:test_CPL_with_EMI.py:49 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=f03d2bd939b695cbdaf24084d89798dc239257e1d4ede4f75ce09af180cfcef5 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 25275.60 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 25275.60 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Liquiloan ########## [32mINFO [0m setup:revx_prod_helper.py:542 The choosen EMI opton Liquiloan is present in ['Liquiloan'] [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Single_course_regular_payment_with_EMI_SplitIt | 115.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [32mINFO [0m setup:revx_prod_helper.py:136 Emi option is selected as: Splitit [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-67) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1649.00 [32mINFO [0m setup:test_CPL_with_EMI.py:115 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=0bd2f965ee9168319180ac5323d397cb89d45d09418a4153598caad3f55261fe [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1649.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1649.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Splitit ########## [32mINFO [0m setup:revx_prod_helper.py:510 Details entered [32mINFO [0m setup:revx_prod_helper.py:513 Payment Button is Appearing [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [32mINFO [0m setup:revx_prod_helper.py:524 Payment button present [32mINFO [0m setup:revx_prod_helper.py:542 The choosen EMI opton Splitit is present in ['Credit Card', 'PayPal', 'Splitit', 'Klarna'] [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Multiple_course_regular_payment_with_EMI_ZestMoney | 119.72 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [32mINFO [0m setup:revx_prod_helper.py:136 Emi option is selected as: Zest Money [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-759) [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-15) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 38532.90 [32mINFO [0m setup:test_CPL_with_EMI.py:137 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=6ff43396ed27c6278e879a78c9f7fbc81e331a620cf0da95fc0b68bc4d2cd4d2 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 38532.90 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 38532.90 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Zestmoney ########## [32mINFO [0m setup:revx_prod_helper.py:542 The choosen EMI opton Zestmoney is present in ['Zestmoney'] [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Multiple_Learner_Single_course_regular_payment_with_EMI_ZestMoney | 100.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [32mINFO [0m setup:revx_prod_helper.py:119 EMI with out Liquiloan [32mINFO [0m setup:revx_prod_helper.py:119 EMI with out Liquiloan [32mINFO [0m setup:revx_prod_helper.py:136 Emi option is selected as: Zest Money [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-15) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 50551.20 [32mINFO [0m setup:test_CPL_with_EMI.py:159 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=f67bea19973ef4ca7d5cabc314d48c8d159b0898a67c852ea3f5ccdbaee42450 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 50551.20 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 50551.20 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Zestmoney ########## [32mINFO [0m setup:revx_prod_helper.py:542 The choosen EMI opton Zestmoney is present in ['Zestmoney'] [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Single_course_regular_payment_Singapore_EMI | 70.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "//div[contains(@style,'block')]//select[starts-with(@id,'emiOptions')]") on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:139 EMI option is not appearign for country: Singapore [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-15) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 807.84 [32mINFO [0m setup:test_CPL_with_EMI.py:179 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=892bffbcd6b14833fd443359e4ff1746b423cd11008cfc982895e29cb50b54a3 | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Single_course_regular_payment_INDIA_with_exam_EMI | 48.43 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:639 Emi option is selected as: Zest Money [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "//a[contains(text(),'(Id-659)')]") on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:675 product (id-659) is not appearing | |||
Passed | test_CPL_with_EMI.py::TestCustomRegularEMI::test_Single_course_regular_payment_discount_check_for_EMI_payments | 67.37 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:788 Emi option is selected as: Zest Money [32mINFO [0m setup:revx_prod_helper.py:825 product selected is : (id-67) [32mINFO [0m setup:selenium_helper.py:36 Not able to add the course as : The maximum discount allowed on paid courses is 15.25% if the total amount for paid courses after GST is less than 27000 [32mINFO [0m setup:selenium_helper.py:38 Alert Accepted | |||
Passed | test_CPL_with_EMI.py::TestCustomPartPaymentEMI::test_Single_course_Part_payment_with_EMI_ZestMoney | 98.05 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [32mINFO [0m setup:revx_prod_helper.py:136 Emi option is selected as: Zest Money [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-67) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 54000.34 [32mINFO [0m setup:test_CPL_with_EMI.py:254 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=b01f29d4e181a10ae2cb07da88f40c253725111df44da49e4b37c4dd24b44b1f [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 20000.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 20000.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Zestmoney ########## [32mINFO [0m setup:revx_prod_helper.py:542 The choosen EMI opton Zestmoney is present in ['Zestmoney'] [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_CPL_with_EMI.py::TestBackedRegularPaymentEMI::test_Single_course_Backend_regular_payment_Singapore_EMI | 69.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "//div[contains(@style,'block')]//select[starts-with(@id,'emiOptions')]") on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:139 EMI option is not appearign for country: Singapore [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-15) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 807.84 [32mINFO [0m setup:test_CPL_with_EMI.py:283 Backend Payment link Success Message is : Payment data received successfully. | |||
Passed | test_CPL_with_EMI.py::TestBackedRegularPaymentEMI::test_Single_course_Backend_regular_payment_United_States_EMI | 69.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:selenium_helper.py:144 Only One window is Present [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:61 EMI with out Liquiloan [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "//div[contains(@style,'block')]//select[starts-with(@id,'emiOptions')]") on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:139 EMI option is not appearign for country: United States [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: (id-15) [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 899.00 [32mINFO [0m setup:test_CPL_with_EMI.py:299 Backend Payment link Success Message is : Payment data received successfully. | |||
Passed | test_backend_complimentary_payment.py::TestComplimentaryPayment::test_create_complimentary_multiple_learner_single_course_with_discount | 70.67 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 23.09 | |||
Passed | test_backend_complimentary_payment.py::TestComplimentaryPayment::test_create_complimentary_multiple_learner_multiple_course_with_discount | 96.09 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 88 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 23.41 | |||
Passed | test_backend_complimentary_payment.py::TestComplimentaryPayment::test_create_complimentary_multiple_learner_multiple_bundle_with_discount | 96.45 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 157 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 164 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 7605.36 | |||
Passed | test_backend_complimentary_payment.py::TestComplimentaryPayment::test_create_complimentary_multiple_learner_multiple_combination_without_discount | 96.98 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 157 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 6629.04 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_multiple_learner_multiple_course_with_discount | 100.69 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 659 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 2294.14 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_single_learner_cohort_with_discount | 70.73 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1276.02 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_multiple_learner_single_paid_course_without_discount | 73.01 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 2140.00 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_multiple_learner_single_paid_course_with_discount | 72.96 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1284.00 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_multiple_learner_combination_paid_and_free_course_with_discount | 98.66 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 9 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1498.32 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_multiple_learner_with_cohort_with_discount | 74.96 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 2889.00 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_single_learner_with_LVC_with_discount | 69.67 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 10 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1403.10 | |||
Passed | test_backend_regular_payment.py::TestBackendRegularPayment::test_create_regular_backend_multiple_learner_with_LVC_with_discount | 71.85 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 10 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 2806.20 | |||
Passed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_multiple_learner_single_course_with_discount | 94.32 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 0.00 [32mINFO [0m setup:test_custom_complimentary.py:27 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=00fa87cf67cb9f3a4a3aece7dadecc3fc69e7c5db90bfaf10141816a16682fd5 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 0.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 0.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_multiple_learner_multiple_course_with_discount | 122.02 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 88 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 0.00 [32mINFO [0m setup:test_custom_complimentary.py:47 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=ec369f2287b28af99085bddaa042aed09b527233ad25e8e37b4c2f7dfe83039e [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 0.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 0.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_multiple_learner_single_bundle_without_discount | 125.60 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 164 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 315697.20 [32mINFO [0m setup:test_custom_complimentary.py:67 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=a692354e69a88b45459bef4e7cdd3731e3e78fae07cbd67e3de44fb393dbfdcd [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 315697.20 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 315697.20 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_multiple_learner_single_bundle_with_discount | 125.61 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 164 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 31569.72 [32mINFO [0m setup:test_custom_complimentary.py:87 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=9ea0769ae4478f3ae793c52cd89d899993efdf85e32432975da4fc19d91ea3ab [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 31569.72 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 31569.72 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_single_learner_multiple_bundle_without_discount | 147.94 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 164 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 310 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 191029.02 [32mINFO [0m setup:test_custom_complimentary.py:107 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=7cde747655480b6de7280aa7d4ed33540b5e306da324dac57c981cdd17dc9515 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 191029.02 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 191029.02 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_multiple_learner_multiple_combination_without_discount | 141.45 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 164 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 11782.00 [32mINFO [0m setup:test_custom_complimentary.py:147 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=8da7b4ca3f6d78f8d9dab7b31cef7555c704009f39690d970597d87b94cd5cc2 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 11782.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 11782.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=8da7b4ca3f6d78f8d9dab7b31cef7555c704009f39690d970597d87b94cd5cc2 is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_complimentary.py::TestCustomComplimentary::test_create_custom_complimentary_multiple_learner_multiple_combination_with_discount | 138.73 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 164 [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1977.40 [32mINFO [0m setup:test_custom_complimentary.py:167 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=196eac04a322529403e143b6cb5f04d787b8f000fc6eb95d077ceea00cd65e10 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1977.40 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1977.40 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=196eac04a322529403e143b6cb5f04d787b8f000fc6eb95d077ceea00cd65e10 is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_single_learner_multiple_course_with_discount | 150.92 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 184 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 66344.32 [32mINFO [0m setup:test_custom_corporate_payment.py:29 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=1d0b92414ff46d58e78df60d1dfeea2f6a4772a459811a1cc9e750778d95c01e [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 66344.32 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 66344.32 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_single_learner_single_course_singapore_with_discount | 148.96 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 923.62 [32mINFO [0m setup:test_custom_corporate_payment.py:50 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=53c3f1d2d82b4ed56df0783c32bf61aefb4c9569bde7d80c1821abc19e917902 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 923.62 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 923.62 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure/checkout/details?authtoken=53c3f1d2d82b4ed56df0783c32bf61aefb4c9569bde7d80c1821abc19e917902 is not present [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure/checkout/details?authtoken=53c3f1d2d82b4ed56df0783c32bf61aefb4c9569bde7d80c1821abc19e917902 is not present [32mINFO [0m setup:revx_prod_helper.py:430 State Selection is not appearing Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 427, in verify_payment_page revx_page.dropDown_stateSelection_learner_detail_section.select_element_by_index(1) File "C:\test_repos\revx_test_python\core\page_factory.py", line 72, in __getattr__ raise NoSuchElementException("An exception of type " + type(error).__name__ + " occurred. With Element -: " + loc) selenium.common.exceptions.NoSuchElementException: Message: An exception of type TimeoutException occurred. With Element -: dropDown_stateSelection_learner_detail_section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## 2Checkout ########## [32mINFO [0m setup:revx_prod_helper.py:485 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_single_learner_single_paid_course_with_discount | 122.94 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 11931.57 [32mINFO [0m setup:test_custom_corporate_payment.py:71 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=37034b011ca3c434b9d4031efda320cc3a92c5735a51d04ef7f33c93ba612de3 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 11931.57 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 11931.57 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_single_learner_multiple_paid_course_without_discount | 148.64 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 184 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 77272.30 [32mINFO [0m setup:test_custom_corporate_payment.py:92 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=04ae5f12d813edb479dce02a47388d35123e7ef839eec7ef501a670ef187d481 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 77272.30 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 77272.30 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_multiple_learner_multiple_paid_course_with_discount | 146.05 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 1 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1752.30 [32mINFO [0m setup:test_custom_corporate_payment.py:113 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=bf4d99b516ca3a92afbf340175c569f42bc8db38dfa7ce843aacff6739650a75 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1752.30 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1752.30 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=bf4d99b516ca3a92afbf340175c569f42bc8db38dfa7ce843aacff6739650a75 is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_single_learner_single_paid_bundle_with_discount | 110.42 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 67 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1484.10 [32mINFO [0m setup:test_custom_corporate_payment.py:134 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=8b39c8fb5e41a0d943a85b990d2e35241e619fcfd3ee6c9b37e6d0f1de7075df [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1484.10 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1484.10 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [32mINFO [0m setup:revx_prod_helper.py:524 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_single_learner_single_cohort_with_discount | 112.20 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1274.15 [32mINFO [0m setup:test_custom_corporate_payment.py:155 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=c43aa59dfd265824ed9b62276b2cd05f3041153103510b5bf9513d656a39bdb3 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1274.15 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1274.15 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [32mINFO [0m setup:revx_prod_helper.py:524 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_corporate_payment.py::TestCustomCorporatePayment::test_create_corporate_multiple_learner_single_cohort_with_discount | 120.79 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 2548.30 [32mINFO [0m setup:test_custom_corporate_payment.py:176 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=4eb9857d3e09a03c23a94c23b6c80cb9014e7dd09504615cead99e83db6474fe [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 2548.30 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 2548.30 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=4eb9857d3e09a03c23a94c23b6c80cb9014e7dd09504615cead99e83db6474fe is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_partial_first_payment.py::TestCustomPartialFirstPayment::test_create_partial_first_single_techmaster_without_discount | 125.10 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 126 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 60711.00 [32mINFO [0m setup:test_custom_partial_first_payment.py:27 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=95972e38486ce89bffe38ac234468bef2cc9a359cd738ed4b6a56e03687dd966 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_partial_first_payment.py::TestCustomPartialFirstPayment::test_create_partial_first_single_bundle_with_discount | 125.12 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 67 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 54000.34 [32mINFO [0m setup:test_custom_partial_first_payment.py:47 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=0d8ef7c6c0c1ca65769036314202f458193d9d34c80b9177f5ed1924f3927eb7 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_partial_first_payment.py::TestCustomPartialFirstPayment::test_create_partial_first_single_bundle_without_discount | 123.09 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 67 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 54000.34 [32mINFO [0m setup:test_custom_partial_first_payment.py:67 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=95ceb99840ba93c38532aba0be1401a76ed84fec5751d1bb9d5946fbc66f34d8 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_partial_first_payment.py::TestCustomPartialFirstPayment::test_create_partial_first_single_techmaster_with_discount | 125.73 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 126 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 54639.90 [32mINFO [0m setup:test_custom_partial_first_payment.py:87 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=4332987abd247564edcb07ca154b6a61c7457577bd055b317c9403ceee3cc0ca [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 30000.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_partial_first_payment.py::TestCustomPartialFirstPayment::test_create_partial_first_multiple_course_with_discount | 139.21 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 659 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 903.15 [32mINFO [0m setup:test_custom_partial_first_payment.py:107 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=035189d9d440b577f15be0bfaf7c227398cf23efa3fa0d6f3fea0d3272a83933 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 500.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 500.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [32mINFO [0m setup:revx_prod_helper.py:524 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_partial_first_payment.py::TestCustomPartialFirstPayment::test_create_partial_first_multiple_course_without_discount | 140.24 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 659 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1059.00 [32mINFO [0m setup:test_custom_partial_first_payment.py:127 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=fd76c47bb397d0f4c1bb1fde0a5f670a590784af636463c891852754e71ac9cd [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 500.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 500.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [32mINFO [0m setup:revx_prod_helper.py:524 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_single_course_with_discount | 123.43 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 11931.57 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:29 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=d5d8479b35040fde5e6fc389a2f4be6bcd71e8b093b480871e4e1f832790808d [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 11931.57 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 11931.57 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_multiple_course_with_discount | 152.34 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 184 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 66344.32 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:53 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=e5bed4ce46d44ef531a24d9e6421d18598856e3ed5f5232074226ddb646bf94a [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 66344.32 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 66344.32 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_multiple_course_with_discount | 153.88 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 184 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 132688.64 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:73 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=b0482410f1834e9cdfb587535b623f826588010ab492cbcc7341d076a8a0778e [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 132688.64 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 132688.64 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_with_cohort_with_discount | 131.09 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 97198.49 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:93 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=0ef36a9f0ea90859f038b72457c6d2ba720ef76089d14ec5cfdc05b2683a2c50 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 97198.49 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 97198.49 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_with_techMaster_with_discount | 126.22 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 126 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 51604.35 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:113 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=3fe663fb9fb5c644e396de8cec9bb28d731b2090044b70013fbe54ea5f50568d [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 51604.35 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 51604.35 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_single_paid_course_without_discount | 110.28 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1998.00 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:133 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=785c300d0a5df480b30d0aa0cf8a13f24c1d38a739e15aed27529e252f43d6b5 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1998.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1998.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=785c300d0a5df480b30d0aa0cf8a13f24c1d38a739e15aed27529e252f43d6b5 is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_single_paid_course_with_discount | 127.84 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 23863.14 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:153 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=8e2469309f37544d26994a2533a628e763beeb9df7776e5e43195d90940dcb38 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 23863.14 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 23863.14 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_multiple_paid_course_without_discount | 146.34 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 15 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 3796.00 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:173 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=756528f6cce1ed2e98501a2a0a088f98a045151f3c3f08b13e27ca8f10295e45 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 3796.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 3796.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=756528f6cce1ed2e98501a2a0a088f98a045151f3c3f08b13e27ca8f10295e45 is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_multiple_free_and_paid_course_with_discount | 144.54 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:222 Product Selected is: 759 [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 1 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 54.00 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:193 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=1542c27255fb7c337f20529d1979920683b2e13d5001d175ef72111c70bd1fa0 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 54.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 54.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=1542c27255fb7c337f20529d1979920683b2e13d5001d175ef72111c70bd1fa0 is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_single_paid_bundle_without_discount | 157.60 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 67 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1186.92 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:213 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=633fc7dc851cd1e5b3e578cb4106e33a707327259f844056d55a48e2b2dd5f49 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1186.92 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1186.92 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure/checkout/details?authtoken=633fc7dc851cd1e5b3e578cb4106e33a707327259f844056d55a48e2b2dd5f49 is not present [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure/checkout/details?authtoken=633fc7dc851cd1e5b3e578cb4106e33a707327259f844056d55a48e2b2dd5f49 is not present [32mINFO [0m setup:revx_prod_helper.py:430 State Selection is not appearing Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 427, in verify_payment_page revx_page.dropDown_stateSelection_learner_detail_section.select_element_by_index(1) File "C:\test_repos\revx_test_python\core\page_factory.py", line 72, in __getattr__ raise NoSuchElementException("An exception of type " + type(error).__name__ + " occurred. With Element -: " + loc) selenium.common.exceptions.NoSuchElementException: Message: An exception of type TimeoutException occurred. With Element -: dropDown_stateSelection_learner_detail_section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Splitit ########## [32mINFO [0m setup:revx_prod_helper.py:510 Details entered [32mINFO [0m setup:revx_prod_helper.py:513 Payment Button is Appearing [32mINFO [0m setup:revx_prod_helper.py:459 ########## 2Checkout ########## [32mINFO [0m setup:revx_prod_helper.py:485 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_single_paid_bundle_with_discount | 156.33 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 67 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1068.23 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:233 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=a196fb340f7c7010638c1efa3f88c1280abc897df633ed08adfaa729a605e45e [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1068.23 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1068.23 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure/checkout/details?authtoken=a196fb340f7c7010638c1efa3f88c1280abc897df633ed08adfaa729a605e45e is not present [33mWARNING [0m setup:page_factory.py:56 the locator dropDown_stateSelection_learner_detail_section on url https://www.simplilearn.com/secure/checkout/details?authtoken=a196fb340f7c7010638c1efa3f88c1280abc897df633ed08adfaa729a605e45e is not present [32mINFO [0m setup:revx_prod_helper.py:430 State Selection is not appearing Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 427, in verify_payment_page revx_page.dropDown_stateSelection_learner_detail_section.select_element_by_index(1) File "C:\test_repos\revx_test_python\core\page_factory.py", line 72, in __getattr__ raise NoSuchElementException("An exception of type " + type(error).__name__ + " occurred. With Element -: " + loc) selenium.common.exceptions.NoSuchElementException: Message: An exception of type TimeoutException occurred. With Element -: dropDown_stateSelection_learner_detail_section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Splitit ########## [32mINFO [0m setup:revx_prod_helper.py:510 Details entered [32mINFO [0m setup:revx_prod_helper.py:513 Payment Button is Appearing [32mINFO [0m setup:revx_prod_helper.py:459 ########## 2Checkout ########## [32mINFO [0m setup:revx_prod_helper.py:485 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_single_cohort_with_discount | 114.44 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 1349.10 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:273 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=26829644fc2357f41d5dd445c48b8925d2d7af7d2b9fea0d968f8da309cee62d [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 1349.10 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 1349.10 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [32mINFO [0m setup:revx_prod_helper.py:524 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_single_cohort_without_discount | 120.98 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 105 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 2998.00 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:293 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=2d6d8fc1d25629dc959692dbcd3bd2f11c2f2a34ae5b3e26cc386447aaed251d [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 2998.00 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 2998.00 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## PayPal ########## [32mINFO [0m setup:revx_prod_helper.py:518 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Klarna ########## [1m[31mERROR [0m setup:selenium_helper.py:83 Message: [33mWARNING [0m setup:selenium_helper.py:84 the locator ('xpath', "(//button[@class='klarna_pay_now_button btn btn-warning'])[last()]") on url https://www.simplilearn.com/secure/checkout/details?authtoken=2d6d8fc1d25629dc959692dbcd3bd2f11c2f2a34ae5b3e26cc386447aaed251d is not present [32mINFO [0m setup:revx_prod_helper.py:523 Klarna paymnet button is not Appearing [32mINFO [0m setup:revx_prod_helper.py:527 Exception in Klarna Paymanet option Traceback (most recent call last): File "C:\test_repos\revx_test_python\helper\revx_prod_helper.py", line 523, in verify_payment_page assert selenium_helper.is_locator_present(revx_page.locators['klarna_paymnet_button'],5),logging.info("Klarna paymnet button is not Appearing") AssertionError: None [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_single_learner_single_LVC_without_discount | 121.21 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 10 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 12978.82 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:313 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=2e15962bee6b936ff45072bafcdd47e734a88f90076052b963982c4d7ae900b8 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 12978.82 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 12978.82 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window | |||
Passed | test_custom_regular_payment.py::TestCustomRegularPayment::test_create_custom_regular_multiple_learner_single_LVC_with_discount | 127.37 | |
-------------------------------Captured log call-------------------------------- [33mWARNING [0m setup:page_factory.py:56 the locator send_anyway on url https://i9simplex.simplilearn.com/sso/payment is not present [32mINFO [0m setup:revx_prod_helper.py:65 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:125 Without EMI [32mINFO [0m setup:revx_prod_helper.py:212 Product Selected is: 10 [32mINFO [0m setup:revx_prod_helper.py:156 Net Paymenat Amoout is: 23361.88 [32mINFO [0m setup:revx_helper.py:639 Custom payment link generated successfully. [32mINFO [0m setup:revx_helper.py:641 Custom payment link generated successfully. [32mINFO [0m setup:test_custom_regular_payment.py:333 Payment link Generated is : https://www.simplilearn.com/secure/checkout/details?authtoken=3d70bdf9d9004ee937a18c56c30f4cbb1ec96181dc46a9b7003b0da7f7ae6f29 [32mINFO [0m setup:revx_prod_helper.py:345 new tab opened [32mINFO [0m setup:revx_prod_helper.py:347 Switched to new tab [32mINFO [0m setup:revx_prod_helper.py:356 CLP created with Amount : 23361.88 [32mINFO [0m setup:revx_prod_helper.py:357 Amount in Cart : 23361.88 [32mINFO [0m setup:revx_prod_helper.py:409 In CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:413 Clicked on Proceed button in CART SUMMARY Section [32mINFO [0m setup:revx_prod_helper.py:416 In LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:428 State selected in Learner Details Section [32mINFO [0m setup:revx_prod_helper.py:437 Clicked on Proceed button in LEARNER DETAILS Section [32mINFO [0m setup:revx_prod_helper.py:445 In SECURE PAYMENT Section [32mINFO [0m setup:revx_prod_helper.py:459 ########## Credit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Debit Card ########## [32mINFO [0m setup:revx_prod_helper.py:473 Card Details entered [32mINFO [0m setup:revx_prod_helper.py:475 Payment Button is Present [32mINFO [0m setup:revx_prod_helper.py:459 ########## Net Banking ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## UPI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ShopSe EMI ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:459 ########## ########## [32mINFO [0m setup:revx_prod_helper.py:481 Payment button present [32mINFO [0m setup:revx_prod_helper.py:364 switched to 1st window |