Report generated on 18-Nov-2022 at 08:52:38 by pytest-html v2.1.1
Packages | {"pluggy": "0.13.1", "py": "1.9.0", "pytest": "6.1.0"} |
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"} |
Python | 3.8.5 |
2 tests ran in 6750.46 seconds.
(Un)check the boxes to filter the results.
1 passed, 0 skipped, 1 failed, 0 errors, 0 expected failures, 0 unexpected passesResult | Test | Duration | Links |
---|---|---|---|
No results found. Try to check the filters | |||
Failed | test_frs_lead_prod.py::TestFrsLeadSubmission::test_ebook_lead_submission | 21.04 | |
self = <test_frs_lead_prod.TestFrsLeadSubmission object at 0x000002978AC15820>, initialize_pages = None testdata = {'db_type': 'mysql', 'query_to_fetch_urls': "select * from ice9.seo where linkable_type='ebook' and status=1 limit 30"} @pytest.mark.test_details("0000","high","ebook lead","pallavi") def test_ebook_lead_submission(self,initialize_pages,testdata): self._test_add_rows_in_csv() countervalue=0 query_to_get_data = db.get_prod_data(testdata['query_to_fetch_urls'],testdata['db_type']) urls = list(map(itemgetter('url'), query_to_get_data)) for url in urls: ebook_url=(pytest.config['prod_url']+url).replace('//','/') course =ebook_url.split('/')[-1] > counter,status=self.pg_ebook.submit_ebook_lead_submission(ebook_url) test_prod\test_frs_lead_prod.py:44: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ pages\ebook_page.py:136: in submit_ebook_lead_submission pytest.driver.find_element_by_xpath("//div[@id='close']").execute_script("arguments[0].click();") c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webdriver.py:394: in find_element_by_xpath return self.find_element(by=By.XPATH, value=xpath) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\webdriver.py:976: in find_element return self.execute(Command.FIND_ELEMENT, { 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 0x000002978AC15D30> response = {'status': 404, 'value': '{"value":{"error":"no such element","message":"no such element: Unable to locate element: {\...\n\\tRtlGetAppContainerNamedObjectPath [0x77C17BBE+286]\\n\\tRtlGetAppContainerNamedObjectPath [0x77C17B8E+238]\\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.NoSuchElementException: Message: no such element: Unable to locate element: {"method":"xpath","selector":"//div[@id='close']"} E (Session info: headless chrome=102.0.5005.63) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\selenium\webdriver\remote\errorhandler.py:242: NoSuchElementException | |||
Passed | test_frs_lead_prod.py::TestFrsLeadSubmission::test_on_demand_webinar_lead_submission | 6721.70 | |
-------------------------------Captured log call-------------------------------- [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/aws-security-identity-and-access-management-iam-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/aws-security-identity-and-access-management-iam-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-mint-money-with-adsense-and-blogging-skills-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-mint-money-with-adsense-and-blogging-skills-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/why-you-should-consider-career-in-salesforce-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/why-you-should-consider-career-in-salesforce-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-i-failed-my-pmp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-i-failed-my-pmp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/need-for-cloud-skilled-technical-professionals-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/need-for-cloud-skilled-technical-professionals-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/designing-spam-classifier-using-machine-learning-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/designing-spam-classifier-using-machine-learning-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-it-service-continuity-model-help-defeat-ransomware-attack-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-it-service-continuity-model-help-defeat-ransomware-attack-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/need-of-cyber-security-in-the-present-era-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/need-of-cyber-security-in-the-present-era-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/big-data-analysis-using-apache-hive-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/big-data-analysis-using-apache-hive-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/basics-of-online-reputation-management-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/basics-of-online-reputation-management-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/10-ways-to-market-your-project-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/10-ways-to-market-your-project-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/skill-vs-talent-acquisition-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/creating-killer-marketing-plan-for-your-app-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/creating-killer-marketing-plan-for-your-app-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/why-cloud-computing-certification-makes-sense-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/why-cloud-computing-certification-makes-sense-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/lean-six-sigma-application-in-manufacturing-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/lean-six-sigma-application-in-manufacturing-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-build-social-media-driven-omni-channel-strategy-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/change-management-fundamentals-pmp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/change-management-fundamentals-pmp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/holiday-digital-marketing-review-and-wrap-up-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/realizing-and-measuring-value-of-itil-initiatives-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-prepare-analytics-team-for-digital-transformation-2017-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-measure-social-media-success-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-measure-social-media-success-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/visualizing-it-roadmap-for-leading-digital-transformation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-radical-analytics-uncover-blind-spots-in-your-data-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/digitization-and-what-it-means-it-professionals-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/digitization-and-what-it-means-it-professionals-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/unlocking-data-science-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/unlocking-data-science-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/innovation-digital-era-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/innovation-digital-era-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-enterprises-identify-potential-employees-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-enterprises-identify-potential-employees-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/pros-and-cons-of-paying-for-social-placement-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/pros-and-cons-of-paying-for-social-placement-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/when-ppc-best-practices-fail-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/when-ppc-best-practices-fail-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-improve-your-employee-training-completion-rates-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/best-training-for-your-team-classroom-virtual-or-e-learning-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/things-you-need-to-get-right-in-agile-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/digital-transformation-in-the-cloud-enterprise-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/accelerating-digital-marketing-performance-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/the-new-digital-marketing-team-skills-structure-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/ppc-case-studies-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/break-free-from-traditional-sales-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/break-free-from-traditional-sales-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/phases-of-ethical-hacking-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/phases-of-ethical-hacking-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/edge-computing-vs-cloud-computing-how-they-stack-up-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/edge-computing-vs-cloud-computing-how-they-stack-up-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/practical-risk-management-steps-for-threat-hunter-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/practical-risk-management-steps-for-threat-hunter-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/paradigm-shift-to-learning-anytime-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/paradigm-shift-to-learning-anytime-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/ppc-account-audit-for-new-year-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/ppc-account-audit-for-new-year-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-build-career-in-ai-and-machine-learning-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-build-career-in-ai-and-machine-learning-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/effective-influencer-marketing-strategy-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/effective-influencer-marketing-strategy-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/leverage-ed-tech-providers-for-digital-transformation-training-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/leverage-ed-tech-providers-for-digital-transformation-training-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/pmbok-6th-edition-vs-pmbok-5th-edition-changes-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/pmbok-6th-edition-vs-pmbok-5th-edition-changes-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/attribution-management-and-ppc-bidding-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//div[@class='banner']//div[@class='video-icon']") on url https://www.simplilearn.com/attribution-management-and-ppc-bidding-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/rising-demand-for-salesforce-experts-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/rising-demand-for-salesforce-experts-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/future-proof-your-ppc-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/future-proof-your-ppc-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/what-makes-an-ecommerce-business-click-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/what-makes-an-ecommerce-business-click-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-blended-learning-boosts-digital-marketing-skills-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-blended-learning-boosts-digital-marketing-skills-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-deconstruct-data-lakes-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-deconstruct-data-lakes-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/skills-every-digital-marketer-needs-to-succeed-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/skills-every-digital-marketer-needs-to-succeed-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/2018-the-year-in-review-for-google-ads-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/2018-the-year-in-review-for-google-ads-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/2019-digital-marketing-predictions-based-on-trends-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/2019-digital-marketing-predictions-based-on-trends-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/upcoming-itil-4-what-you-need-to-know-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/upcoming-itil-4-what-you-need-to-know-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/when-good-google-ads-campaigns-go-bad-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/when-good-google-ads-campaigns-go-bad-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/whats-new-and-in-the-future-for-seo-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/whats-new-and-in-the-future-for-seo-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/advanced-cro-tips-that-will-skyrocket-your-conversions-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/advanced-cro-tips-that-will-skyrocket-your-conversions-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/google-display-network-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/google-display-network-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/ppc-tips-for-microsoft-advertising-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/ppc-tips-for-microsoft-advertising-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-science-options-for-certifications-degrees-and-career-paths-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-science-options-for-certifications-degrees-and-career-paths-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/keys-to-digital-transformation-in-banking-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/keys-to-digital-transformation-in-banking-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/10-email-breakthroughs-that-wont-break-the-law-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/10-email-breakthroughs-that-wont-break-the-law-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/future-in-data-science-career-outlook-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/future-in-data-science-career-outlook-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/expedite-your-data-science-career-with-online-training-from-purdue-university-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/expedite-your-data-science-career-with-online-training-from-purdue-university-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-science-in-practice-across-three-industries-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-science-in-practice-across-three-industries-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/optimizing-your-videos-for-maximum-views-through-search-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/optimizing-your-videos-for-maximum-views-through-search-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/career-post-covid-era-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/career-post-covid-era-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-data-science-can-help-post-covid-world-recover-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-data-science-can-help-post-covid-world-recover-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/startup-career-strategy-highs-and-lows-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/startup-career-strategy-highs-and-lows-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/decision-analytic-principles-for-data-scientists-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/decision-analytic-principles-for-data-scientists-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/expert-tips-for-a-successful-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/expert-tips-for-a-successful-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/career-management-masterclass-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/career-management-masterclass-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-science-and-analytics-in-itsm-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-science-and-analytics-in-itsm-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/top-things-to-know-now-about-seo-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/top-things-to-know-now-about-seo-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/cyber-security-challenges-and-opportunities-post-covid-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//div[@class='banner']//div[@class='video-icon']") on url https://www.simplilearn.com/cyber-security-challenges-and-opportunities-post-covid-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/upskilling-and-reskilling-strategies-to-create-future-proof-careers-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/upskilling-and-reskilling-strategies-to-create-future-proof-careers-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-ai-is-changing-the-dynamics-of-fintech-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-ai-is-changing-the-dynamics-of-fintech-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/job-search-in-the-world-of-ai-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/job-search-in-the-world-of-ai-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-scientist-or-data-engineer-mapping-educational-and-career-opportunities-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-scientist-or-data-engineer-mapping-educational-and-career-opportunities-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-lakes-and-their-impact-on-digital-transformation-and-analytics-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-lakes-and-their-impact-on-digital-transformation-and-analytics-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/the-changed-landscape-of-tech-hiring-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/the-changed-landscape-of-tech-hiring-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/path-to-become-an-expert-in-rpa-and-process-improvement-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/path-to-become-an-expert-in-rpa-and-process-improvement-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/storytelling-with-marketing-analytics-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/storytelling-with-marketing-analytics-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/strategies-for-vuca-world-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/strategies-for-vuca-world-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/ai-trend-in-fintech-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//div[@class='banner']//div[@class='video-icon']") on url https://www.simplilearn.com/ai-trend-in-fintech-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-develop-a-machine-learning-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-develop-a-machine-learning-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/habits-of-highly-effective-engineers-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/habits-of-highly-effective-engineers-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-post-graduate-program-in-data-engineering-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-post-graduate-program-in-data-engineering-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-post-graduate-program-in-digital-transformation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-post-graduate-program-in-digital-transformation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-evaluate-and-manage-google-match-type-changes-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//div[@class='banner']//div[@class='video-icon']") on url https://www.simplilearn.com/how-to-evaluate-and-manage-google-match-type-changes-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-become-a-digital-business-leader-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-become-a-digital-business-leader-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/ways-to-improve-your-interview-skills-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//div[@class='banner']//div[@class='video-icon']") on url https://www.simplilearn.com/ways-to-improve-your-interview-skills-article is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/build-a-successful-cyber-security-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/build-a-successful-cyber-security-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/manage-and-build-an-effective-engineering-team-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/manage-and-build-an-effective-engineering-team-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-science-and-data-analyst-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-science-and-data-analyst-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/post-graduate-program-in-full-stack-web-development-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/post-graduate-program-in-full-stack-web-development-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/corporate-upskilling-and-reskilling-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/career-success-tips-and-strategy-during-pandemic-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/career-success-tips-and-strategy-during-pandemic-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-professional-certificate-program-in-blockchain-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-professional-certificate-program-in-blockchain-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/pay-per-click-strategies-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/pay-per-click-strategies-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/trends-in-cloud-computing-and-devops-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/trends-in-cloud-computing-and-devops-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/trends-in-data-science-analytics-ai-ml-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/trends-in-data-science-analytics-ai-ml-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/achieve-your-goals-through-time-management-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/achieve-your-goals-through-time-management-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/skills-for-digital-marketing-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/skills-for-digital-marketing-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/cybersecurity-trends-and-career-in-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/cybersecurity-trends-and-career-in-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/successfully-navigating-potential-career-pitfalls-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/successfully-navigating-potential-career-pitfalls-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/post-graduate-program-cloud-computing-jan-22-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/post-graduate-program-cloud-computing-jan-22-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/debunking-seo-myths-growth-hacks-for-seo-success-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/debunking-seo-myths-growth-hacks-for-seo-success-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/preparing-your-career-for-machine-intelligence-4-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/preparing-your-career-for-machine-intelligence-4-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/understanding-data-fabrics-and-how-they-will-shape-your-data-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/understanding-data-fabrics-and-how-they-will-shape-your-data-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/top-technical-jobs-2022-how-to-prepare-for-them-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/top-technical-jobs-2022-how-to-prepare-for-them-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-become-successful-blockchain-professional-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-become-successful-blockchain-professional-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-map-the-customer-journey-create-effective-marketing-content-for-it-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-map-the-customer-journey-create-effective-marketing-content-for-it-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/devops-masterclass-using-low-code-no-code-tools-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/devops-masterclass-using-low-code-no-code-tools-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-caltech-ctme-bootcamps-in-data-science-ai-ml-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-caltech-ctme-bootcamps-in-data-science-ai-ml-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/expert-masterclass-design-thinking-for-digital-transformation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/expert-masterclass-design-thinking-for-digital-transformation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/mastering-the-art-of-digital-technology-leadership-to-succeed-in-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/mastering-the-art-of-digital-technology-leadership-to-succeed-in-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/why-your-company-needs-a-chief-data-officer-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/why-your-company-needs-a-chief-data-officer-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/bridging-the-cloud-with-virtual-network-pairing-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/bridging-the-cloud-with-virtual-network-pairing-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-introducing-ui-ux-design-expert-masters-program-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-introducing-ui-ux-design-expert-masters-program-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-build-personal-brand-and-unlock-career-success-in-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-build-personal-brand-and-unlock-career-success-in-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-caltech-coding-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-caltech-coding-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/handling-googles-transition-to-responsive-search-ads-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/handling-googles-transition-to-responsive-search-ads-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-introduction-international-mba-with-iu-germany-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-introduction-international-mba-with-iu-germany-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/india-fintech-revolution-journey-trends-and-career-avenues-for-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/india-fintech-revolution-journey-trends-and-career-avenues-for-2022-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/applying-lean-principles-in-your-work-and-your-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/applying-lean-principles-in-your-work-and-your-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-look-at-the-professional-certification-in-blockchain-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-look-at-the-professional-certification-in-blockchain-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-caltech-cloud-computing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-caltech-cloud-computing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-data-science-masters-program-with-job-guarantee-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-data-science-masters-program-with-job-guarantee-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-post-graduate-program-in-business-analysis-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-post-graduate-program-in-business-analysis-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/introducing-the-post-graduate-program-in-design-thinking-and-innovation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/introducing-the-post-graduate-program-in-design-thinking-and-innovation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/career-masterclass-how-to-get-the-best-job-search-result-from-job-boards-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/career-masterclass-how-to-get-the-best-job-search-result-from-job-boards-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/digital-marketing-masterclass-link-building-for-successful-digital-marketing-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/digital-marketing-masterclass-link-building-for-successful-digital-marketing-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/strategies-for-becoming-a-world-class-developer-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/strategies-for-becoming-a-world-class-developer-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/software-development-masterclass-building-hr-application-with-angular-and-spring-boot-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/software-development-masterclass-building-hr-application-with-angular-and-spring-boot-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/seven-mistakes-seven-lessons-a-journey-to-become-a-data-leader-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/seven-mistakes-seven-lessons-a-journey-to-become-a-data-leader-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-science-masterclass-regression-analysis-and-its-applications-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-science-masterclass-regression-analysis-and-its-applications-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-skills-for-non-data-scientists-learning-to-use-data-in-everyday-work-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-skills-for-non-data-scientists-learning-to-use-data-in-everyday-work-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-crack-any-interview-and-grab-your-dream-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-crack-any-interview-and-grab-your-dream-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-look-at-the-post-graduate-program-in-ai-and-machine-learning-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-look-at-the-post-graduate-program-in-ai-and-machine-learning-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/creating-and-managing-remarketing-campaigns-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/creating-and-managing-remarketing-campaigns-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-caltech-data-science-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-caltech-data-science-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/personal-impact-for-professional-success-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/personal-impact-for-professional-success-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-keep-cloud-apps-current-up-to-the-minute-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-keep-cloud-apps-current-up-to-the-minute-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/ai-for-decision-making-business-strategies-and-applications-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/ai-for-decision-making-business-strategies-and-applications-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/post-graduate-program-in-digital-transformation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/post-graduate-program-in-digital-transformation-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/cybersecurity-masterclass-how-to-secure-a-fintech-app-quickly-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/cybersecurity-masterclass-how-to-secure-a-fintech-app-quickly-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-crack-a-top-tier-data-science-interview-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-crack-a-top-tier-data-science-interview-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/what-maang-companies-look-for-in-tech-hires-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/what-maang-companies-look-for-in-tech-hires-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/creating-customer-personas-for-effective-marketing-campaigns-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/creating-customer-personas-for-effective-marketing-campaigns-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/how-to-ace-data-science-interviews-with-manufacturing-companies-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/how-to-ace-data-science-interviews-with-manufacturing-companies-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/expert-masterclass-meeting-today-biggest-business-challenges-with-data-science-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/expert-masterclass-meeting-today-biggest-business-challenges-with-data-science-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/preview-simplilearn-full-stack-java-developer-masters-program-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/preview-simplilearn-full-stack-java-developer-masters-program-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-look-at-ai-for-decision-making-business-strategies-and-applications-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-look-at-ai-for-decision-making-business-strategies-and-applications-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-preview-of-the-caltech-blockchain-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-preview-of-the-caltech-blockchain-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/learn-it-live-digital-marketing-masterclass-how-to-use-on-page-seo-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/learn-it-live-digital-marketing-masterclass-how-to-use-on-page-seo-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-business-analytics-bootcamp-with-uci-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-business-analytics-bootcamp-with-uci-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/data-science-masterclass-how-to-teach-a-machine-learning-system-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/data-science-masterclass-how-to-teach-a-machine-learning-system-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/designing-the-front-end-of-a-consumer-ecommerce-app-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/designing-the-front-end-of-a-consumer-ecommerce-app-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/iu-germany-master-of-science-in-artificial-intelligence-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/iu-germany-master-of-science-in-artificial-intelligence-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-look-at-the-post-graduate-program-in-cyber-security-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-look-at-the-post-graduate-program-in-cyber-security-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/career-webinar-what-to-know-for-a-career-in-big-data-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/career-webinar-what-to-know-for-a-career-in-big-data-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-cloud-computing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-cloud-computing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/digital-transformation-masterclass-using-scientific-thinking-in-design-thinking-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/digital-transformation-masterclass-using-scientific-thinking-in-design-thinking-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-preview-of-the-uci-cybersecurity-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-preview-of-the-uci-cybersecurity-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-preview-of-the-caltech-ai-and-ml-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-preview-of-the-caltech-ai-and-ml-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-look-at-the-caltech-cloud-computing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-look-at-the-caltech-cloud-computing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/learn-it-live-digital-marketing-masterclass-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/learn-it-live-digital-marketing-masterclass-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/caltech-ctme-post-graduate-program-in-full-stack-web-development-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/caltech-ctme-post-graduate-program-in-full-stack-web-development-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/interview-prep-masterclass-interview-tips-to-land-a-data-science-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/interview-prep-masterclass-interview-tips-to-land-a-data-science-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/software-development-masterclass-designing-a-social-media-app-like-instagram-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/software-development-masterclass-designing-a-social-media-app-like-instagram-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/a-live-look-at-the-caltech-coding-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/a-live-look-at-the-caltech-coding-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-purdue-digital-marketing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/program-preview-a-live-look-at-the-purdue-digital-marketing-bootcamp-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/interview-prep-masterclass-interview-tips-to-land-a-software-developer-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/interview-prep-masterclass-interview-tips-to-land-a-software-developer-job-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//a[contains(text(),'Register for webinar')]") on url https://www.simplilearn.com/succeed-with-simplilearn-how-simplilearns-job-guarantee-transformed-my-career-webinar is not visible [1m[31mERROR [0m setup:selenium_helper.py:113 Message: [33mWARNING [0m setup:selenium_helper.py:114 the locator ('xpath', "//input[@name='firstname']") on url https://www.simplilearn.com/succeed-with-simplilearn-how-simplilearns-job-guarantee-transformed-my-career-webinar is not visible |