Report generated on 15-Feb-2023 at 12:22:46 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 |
25 tests ran in 368.15 seconds.
(Un)check the boxes to filter the results.
24 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_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[RSS feed] | 21.37 | |
self = <test_SL_footer_check.TestSLFooterCheck object at 0x0000020565F9A040>, value = 'RSS feed' initialize_pages = None @pytest.mark.test_details("SLUB-T0000","high","Sl Footer Check","Pradeep") @pytest.mark.parametrize("value",_create_parameterised_data()) def test_SL_Footer_check(self,value,initialize_pages): try: logging.info(value) with open('sl_footer_check_test_data.csv', 'r') as csv_file: csv_data = csv.reader(csv_file) for line in csv_data: if line[0] == value: url = line[1] logging.info(f"URL for {value} is : {url}") break pytest.driver.get(pytest.config['prod_url']) selenium_helper.wait_for_page_to_load(20,pytest.config['prod_url']) dynamic_locator = f"(//div[starts-with(@class,'col-md-2')]//a[@title='{value}'])[1]" logging.info(f"Dynamic Locator : {dynamic_locator}") time.sleep(3) WebDriverWait(pytest.driver, 20).until(EC.element_to_be_clickable((By.XPATH, dynamic_locator))).scroll_to_element() time.sleep(2) default_window = pytest.driver.current_window_handle pytest.driver.find_element(By.XPATH,dynamic_locator).click() time.sleep(5) window_handle = list(pytest.driver.window_handles) if len(window_handle) > 1: pytest.driver.close() pytest.driver.switch_to.window(window_handle[-1]) url_opened,message = self.check_redirection(value,url) rows = [[value,url,url_opened,message]] with open("Report.csv", 'a', newline='\n') as csvfile: csvwriter = csv.writer(csvfile) csvwriter.writerows(rows) if 'Not Working' in message: pytest.driver.get_screenshot_as_file(os.path.join(os.path.dirname(os.curdir), "report\screenshot", f"{__name__}_{value}.jpeg")) > pytest.fail() test_prod\test_SL_footer_check.py:261: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ msg = '', pytrace = True @_with_exception(Failed) def fail(msg: str = "", pytrace: bool = True) -> "NoReturn": """Explicitly fail an executing test with the given message. :param str msg: The message to show the user as reason for the failure. :param bool pytrace: If False, msg represents the full failure information and no python traceback will be reported. """ __tracebackhide__ = True > raise Failed(msg=msg, pytrace=pytrace) E Failed: <Failed instance> c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\_pytest\outcomes.py:153: Failed During handling of the above exception, another exception occurred: self = <test_SL_footer_check.TestSLFooterCheck object at 0x0000020565F9A040>, value = 'RSS feed' initialize_pages = None @pytest.mark.test_details("SLUB-T0000","high","Sl Footer Check","Pradeep") @pytest.mark.parametrize("value",_create_parameterised_data()) def test_SL_Footer_check(self,value,initialize_pages): try: logging.info(value) with open('sl_footer_check_test_data.csv', 'r') as csv_file: csv_data = csv.reader(csv_file) for line in csv_data: if line[0] == value: url = line[1] logging.info(f"URL for {value} is : {url}") break pytest.driver.get(pytest.config['prod_url']) selenium_helper.wait_for_page_to_load(20,pytest.config['prod_url']) dynamic_locator = f"(//div[starts-with(@class,'col-md-2')]//a[@title='{value}'])[1]" logging.info(f"Dynamic Locator : {dynamic_locator}") time.sleep(3) WebDriverWait(pytest.driver, 20).until(EC.element_to_be_clickable((By.XPATH, dynamic_locator))).scroll_to_element() time.sleep(2) default_window = pytest.driver.current_window_handle pytest.driver.find_element(By.XPATH,dynamic_locator).click() time.sleep(5) window_handle = list(pytest.driver.window_handles) if len(window_handle) > 1: pytest.driver.close() pytest.driver.switch_to.window(window_handle[-1]) url_opened,message = self.check_redirection(value,url) rows = [[value,url,url_opened,message]] with open("Report.csv", 'a', newline='\n') as csvfile: csvwriter = csv.writer(csvfile) csvwriter.writerows(rows) if 'Not Working' in message: pytest.driver.get_screenshot_as_file(os.path.join(os.path.dirname(os.curdir), "report\screenshot", f"{__name__}_{value}.jpeg")) pytest.fail() except: logging.info("Exception Occurred", exc_info=True) pytest.driver.get_screenshot_as_file(os.path.join(os.path.dirname(os.curdir), "report\screenshot", f"{__name__}_{value}.jpeg")) > pytest.fail() E Failed: <Failed instance> test_prod\test_SL_footer_check.py:266: Failed -------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 RSS feed [32mINFO [0m setup:test_SL_footer_check.py:236 URL for RSS feed is : https://www.simplilearn.com/feed [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='RSS feed'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/feed [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/feed [32mINFO [0m setup:test_SL_footer_check.py:264 Exception Occurred Traceback (most recent call last): File "C:\test_repos\pre_sales_test_python\test_prod\test_SL_footer_check.py", line 261, in test_SL_Footer_check pytest.fail() File "c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\_pytest\outcomes.py", line 153, in fail raise Failed(msg=msg, pytrace=pytrace) Failed: <Failed instance> | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Refer and Earn] | 12.46 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Refer and Earn [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Refer and Earn is : https://www.simplilearn.com/refer-and-earn [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Refer and Earn'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/refer-and-earn [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/refer-and-earn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Facebook] | 21.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Facebook [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Facebook is : https://www.facebook.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Facebook'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.facebook.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.facebook.com/login/?next=https%3A%2F%2Fwww.facebook.com%2Fsimplilearn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Twitter] | 21.51 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Twitter [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Twitter is : https://www.twitter.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Twitter'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.twitter.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://twitter.com/simplilearn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[YouTube] | 13.26 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 YouTube [32mINFO [0m setup:test_SL_footer_check.py:236 URL for YouTube is : https://www.youtube.com/user/Simplilearn [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='YouTube'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.youtube.com/user/Simplilearn [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.youtube.com/user/Simplilearn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[LinkedIn] | 11.52 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 LinkedIn [32mINFO [0m setup:test_SL_footer_check.py:236 URL for LinkedIn is : https://www.linkedin.com/company/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='LinkedIn'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.linkedin.com/company/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.linkedin.com/company/simplilearn?original_referer= | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Telegram] | 21.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Telegram [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Telegram is : https://web.telegram.org/#/im?p=@simplilearnupdates [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Telegram'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://web.telegram.org/#/im?p=@simplilearnupdates [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://web.telegram.org/k/#/im?p=@simplilearnupdates | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Instagram] | 11.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Instagram [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Instagram is : https://www.instagram.com/simplilearn_elearning/ [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Instagram'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.instagram.com/simplilearn_elearning/ [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.instagram.com/simplilearn_elearning/ | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[About us] | 11.97 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 About us [32mINFO [0m setup:test_SL_footer_check.py:236 URL for About us is : https://www.simplilearn.com/about-us [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='About us'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/about-us [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/about-us | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Careers] | 11.97 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Careers [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Careers is : https://www.simplilearn.com/careers [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Careers'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/careers [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/careers | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[In the media] | 17.90 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 In the media [32mINFO [0m setup:test_SL_footer_check.py:236 URL for In the media is : https://www.simplilearn.com/media [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='In the media'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/media [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/media | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Alumni speak] | 33.08 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Alumni speak [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Alumni speak is : https://www.simplilearn.com/reviews [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Alumni speak'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/reviews [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/reviews | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Grievance redressal] | 11.35 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Grievance redressal [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Grievance redressal is : https://www.simplilearn.com/grievance-redressal [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Grievance redressal'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/grievance-redressal [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/grievance-redressal | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Contact us] | 11.16 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Contact us [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Contact us is : https://www.simplilearn.com/contact-us [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Contact us'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/contact-us [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/contact-us | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Become an instructor] | 11.09 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Become an instructor [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Become an instructor is : https://www.simplilearn.com/become-our-trainer [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Become an instructor'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/become-our-trainer [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/become-our-trainer | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Blog as guest] | 11.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Blog as guest [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Blog as guest is : https://www.simplilearn.com/guest-blogging [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Blog as guest'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/guest-blogging [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/guest-blogging | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Skillup] | 11.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Skillup [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Skillup is : https://www.simplilearn.com/skillup-free-online-courses [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Skillup'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/skillup-free-online-courses [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/skillup-free-online-courses | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Skillup Sitemap] | 10.99 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Skillup Sitemap [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Skillup Sitemap is : https://www.simplilearn.com/skillup-sitemap [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Skillup Sitemap'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/skillup-sitemap [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/skillup-sitemap | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Resources] | 11.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Resources [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Resources is : https://www.simplilearn.com/resources [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Resources'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/resources [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/resources | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[City Sitemap] | 10.98 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 City Sitemap [32mINFO [0m setup:test_SL_footer_check.py:236 URL for City Sitemap is : https://www.simplilearn.com/city-sitemap [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='City Sitemap'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/city-sitemap [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/city-sitemap | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Corporate training] | 11.46 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Corporate training [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Corporate training is : https://www.simplilearn.com/corporate-training [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Corporate training'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/corporate-training [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/corporate-training | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Partners] | 11.42 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Partners [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Partners is : https://www.simplilearn.com/reseller-partner-program-for-training-courses [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Partners'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/reseller-partner-program-for-training-courses [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/reseller-partner-program-for-training-courses | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Digital Transformation] | 15.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Digital Transformation [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Digital Transformation is : https://www.simplilearn.com/digital-transformation-training [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Digital Transformation'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/digital-transformation-training [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/digital-transformation-training | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Get the Android App] | 10.92 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Get the Android App [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Get the Android App is : https://play.google.com/store/apps/details?id=com.mobile.simplilearn [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Get the Android App'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://play.google.com/store/apps/details?id=com.mobile.simplilearn [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://play.google.com/store/apps/details?id=com.mobile.simplilearn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Get the iOS App] | 11.43 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:230 Get the iOS App [32mINFO [0m setup:test_SL_footer_check.py:236 URL for Get the iOS App is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 [32mINFO [0m setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Get the iOS App'])[1] [32mINFO [0m setup:test_SL_footer_check.py:84 URL received is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 [32mINFO [0m setup:test_SL_footer_check.py:85 URL Opened is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 |