Report generated on 19-Jul-2023 at 09:47:01 by pytest-html v2.1.1
Packages | {"pluggy": "0.13.1", "py": "1.9.0", "pytest": "7.2.2"} |
Platform | Windows-10-10.0.19041-SP0 |
Plugins | {"allure-pytest": "2.8.18", "datadir": "1.3.1", "html": "2.1.1", "metadata": "1.10.0", "order": "1.1.0", "xdist": "3.2.1"} |
Python | 3.8.5 |
73 tests ran in 1015.81 seconds.
(Un)check the boxes to filter the results.
71 passed, 0 skipped, 2 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[Instagram] | 44.64 | |
self = <test_SL_footer_check.TestSLFooterCheck object at 0x000002786256F280>, value = 'Instagram' 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(7) 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() E Failed test_prod\test_SL_footer_check.py:433: Failed -------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Instagram [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Instagram is : https://www.instagram.com/simplilearn_elearning/ [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Instagram'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.instagram.com/simplilearn_elearning/ [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.instagram.com/simplilearn_elearning/ | |||
Failed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_footer_check_report_details_to_DB | 0.03 | |
self = <test_SL_footer_check.TestSLFooterCheck object at 0x00000278625449A0> @pytest.mark.order(-1) @pytest.mark.test_details("0000","high","SL_footer_check","Om") def test_SL_footer_check_report_details_to_DB(self): # Inserting footer check report to DB current_date = date.today() > read_csvFile = pandas.read_csv('Report.csv', usecols=['Status']) test_prod\test_SL_footer_check.py:28: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\pandas\util\_decorators.py:311: in wrapper return func(*args, **kwargs) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\pandas\io\parsers\readers.py:680: in read_csv return _read(filepath_or_buffer, kwds) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\pandas\io\parsers\readers.py:575: in _read parser = TextFileReader(filepath_or_buffer, **kwds) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\pandas\io\parsers\readers.py:933: in __init__ self._engine = self._make_engine(f, self.engine) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\pandas\io\parsers\readers.py:1231: in _make_engine return mapping[engine](f, **self.options) c:\users\qateam\appdata\local\programs\python\python38\lib\site-packages\pandas\io\parsers\c_parser_wrapper.py:75: in __init__ self._reader = parsers.TextReader(src, **kwds) pandas\_libs\parsers.pyx:544: in pandas._libs.parsers.TextReader.__cinit__ ??? pandas\_libs\parsers.pyx:633: in pandas._libs.parsers.TextReader._get_header ??? pandas\_libs\parsers.pyx:847: in pandas._libs.parsers.TextReader._tokenize_rows ??? _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ > ??? E UnicodeDecodeError: 'utf-8' codec can't decode byte 0xae in position 9084: invalid start byte pandas\_libs\parsers.pyx:1952: UnicodeDecodeError | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Refer and Earn] | 17.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Refer and Earn [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Refer and Earn is : https://www.simplilearn.com/refer-and-earn [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Refer and Earn'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/refer-and-earn [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/refer-and-earn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Facebook] | 31.60 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Facebook [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Facebook is : https://www.facebook.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Facebook'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.facebook.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.facebook.com/Simplilearn/ | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Twitter] | 28.65 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Twitter [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Twitter is : https://www.twitter.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Twitter'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.twitter.com/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://twitter.com/i/flow/login?redirect_after_login=%2Fsimplilearn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[YouTube] | 19.47 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 YouTube [32mINFO [0m setup:test_SL_footer_check.py:408 URL for YouTube is : https://www.youtube.com/user/Simplilearn [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='YouTube'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.youtube.com/user/Simplilearn [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.youtube.com/user/Simplilearn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[LinkedIn] | 13.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 LinkedIn [32mINFO [0m setup:test_SL_footer_check.py:408 URL for LinkedIn is : https://www.linkedin.com/company/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='LinkedIn'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.linkedin.com/company/simplilearn [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.linkedin.com/company/simplilearn | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Telegram] | 28.51 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Telegram [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Telegram is : https://web.telegram.org/#/im?p=@simplilearnupdates [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Telegram'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://web.telegram.org/#/im?p=@simplilearnupdates [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://web.telegram.org/k/#/im?p=@simplilearnupdates | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[About us] | 16.43 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 About us [32mINFO [0m setup:test_SL_footer_check.py:408 URL for About us is : https://www.simplilearn.com/about-us [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='About us'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/about-us [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/about-us | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Careers] | 15.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Careers [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Careers is : https://www.simplilearn.com/careers [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Careers'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/careers [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/careers | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Newsroom] | 16.96 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Newsroom [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Newsroom is : https://www.simplilearn.com/partners/sl/newsroom [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Newsroom'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/partners/sl/newsroom [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/partners/sl/newsroom | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Alumni speak] | 15.38 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Alumni speak [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Alumni speak is : https://www.simplilearn.com/reviews [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Alumni speak'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/reviews [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/reviews | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Grievance redressal] | 13.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Grievance redressal [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Grievance redressal is : https://www.simplilearn.com/grievance-redressal [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Grievance redressal'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/grievance-redressal [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/grievance-redressal | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Contact us] | 14.50 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Contact us [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Contact us is : https://www.simplilearn.com/contact-us [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Contact us'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/contact-us [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/contact-us | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Become an instructor] | 13.22 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Become an instructor [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Become an instructor is : https://www.simplilearn.com/become-our-trainer [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Become an instructor'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/become-our-trainer [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/become-our-trainer | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Blog as guest] | 13.19 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Blog as guest [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Blog as guest is : https://www.simplilearn.com/guest-blogging [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Blog as guest'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/guest-blogging [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/guest-blogging | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Skillup] | 13.43 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Skillup [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Skillup is : https://www.simplilearn.com/skillup-free-online-courses [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Skillup'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/skillup-free-online-courses [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/skillup-free-online-courses | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Skillup Sitemap] | 13.13 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Skillup Sitemap [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Skillup Sitemap is : https://www.simplilearn.com/skillup-sitemap [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Skillup Sitemap'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/skillup-sitemap [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/skillup-sitemap | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Resources] | 13.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Resources [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Resources is : https://www.simplilearn.com/resources [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Resources'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/resources [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/resources | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[RSS feed] | 13.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 RSS feed [32mINFO [0m setup:test_SL_footer_check.py:408 URL for RSS feed is : https://www.simplilearn.com/feed [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='RSS feed'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/feed [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/feed | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[City Sitemap] | 13.47 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 City Sitemap [32mINFO [0m setup:test_SL_footer_check.py:408 URL for City Sitemap is : https://www.simplilearn.com/city-sitemap [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='City Sitemap'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/city-sitemap [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/city-sitemap | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Corporate training] | 12.81 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Corporate training [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Corporate training is : https://www.simplilearn.com/corporate-training [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Corporate training'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/corporate-training [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://www.simplilearn.com/corporate-training | |||
Passed | test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Partners] | 13.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Partners [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Partners is : https://www.simplilearn.com/reseller-partner-program-for-training-courses [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Partners'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/reseller-partner-program-for-training-courses [32mINFO [0m setup:test_SL_footer_check.py:262 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.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Digital Transformation [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Digital Transformation is : https://www.simplilearn.com/digital-transformation-training [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Digital Transformation'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://www.simplilearn.com/digital-transformation-training [32mINFO [0m setup:test_SL_footer_check.py:262 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] | 13.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Get the Android App [32mINFO [0m setup:test_SL_footer_check.py:408 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:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Get the Android App'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://play.google.com/store/apps/details?id=com.mobile.simplilearn [32mINFO [0m setup:test_SL_footer_check.py:262 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] | 12.87 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:402 Get the iOS App [32mINFO [0m setup:test_SL_footer_check.py:408 URL for Get the iOS App is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 [32mINFO [0m setup:test_SL_footer_check.py:414 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Get the iOS App'])[1] [32mINFO [0m setup:test_SL_footer_check.py:261 URL received is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 [32mINFO [0m setup:test_SL_footer_check.py:262 URL Opened is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Artificial Intelligence Course] | 11.55 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Artificial Intelligence Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Artificial Intelligence Course is : https://www.simplilearn.com/artificial-intelligence-masters-program-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Artificial Intelligence Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Cloud Computing Certification Course] | 10.92 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Cloud Computing Certification Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Cloud Computing Certification Course is : https://www.simplilearn.com/pgp-cloud-computing-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Cloud Computing Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Full Stack Web Development Course] | 10.92 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Full Stack Web Development Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Full Stack Web Development Course is : https://www.simplilearn.com/pgp-full-stack-web-development-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Full Stack Web Development Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[PG in Data Science] | 11.44 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 PG in Data Science [32mINFO [0m setup:test_SL_footer_check.py:491 URL for PG in Data Science is : https://www.simplilearn.com/pgp-data-science-certification-bootcamp-program [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='PG in Data Science'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[MS in Artificial Intelligence] | 11.35 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 MS in Artificial Intelligence [32mINFO [0m setup:test_SL_footer_check.py:491 URL for MS in Artificial Intelligence is : https://www.simplilearn.com/ms-in-artificial-intelligence [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='MS in Artificial Intelligence'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Product Management Certification Course] | 11.21 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Product Management Certification Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Product Management Certification Course is : https://www.simplilearn.com/product-management-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Product Management Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Blockchain Course] | 11.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Blockchain Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Blockchain Course is : https://www.simplilearn.com/blockchain-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Blockchain Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Machine Learning Course] | 10.89 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Machine Learning Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Machine Learning Course is : https://www.simplilearn.com/iitk-professional-certificate-course-ai-machine-learning [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Machine Learning Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Cyber Security Course in India] | 11.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Cyber Security Course in India [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Cyber Security Course in India is : https://www.simplilearn.com/pgp-advanced-executive-program-in-cyber-security [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Cyber Security Course in India'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Project Management Certification Course] | 11.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Project Management Certification Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Project Management Certification Course is : https://www.simplilearn.com/pgp-project-management-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Project Management Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Cyber Security Certification Course] | 10.96 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Cyber Security Certification Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Cyber Security Certification Course is : https://www.simplilearn.com/pgp-cyber-security-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Cyber Security Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Lean Six Sigma Certification Course] | 11.46 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Lean Six Sigma Certification Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Lean Six Sigma Certification Course is : https://www.simplilearn.com/pgp-lean-six-sigma-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Lean Six Sigma Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Data Analytics Program] | 11.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Data Analytics Program [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Data Analytics Program is : https://www.simplilearn.com/pgp-data-analytics-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Data Analytics Program'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[AI and ML Course] | 10.97 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 AI and ML Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for AI and ML Course is : https://www.simplilearn.com/pgp-ai-machine-learning-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='AI and ML Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingPGP::test_SL_Footer_check_trending_PGP[Business Analysis Certification Course] | 11.47 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:485 Business Analysis Certification Course [32mINFO [0m setup:test_SL_footer_check.py:491 URL for Business Analysis Certification Course is : https://www.simplilearn.com/pgp-business-analysis-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:497 Dynamic Locator : //p[contains(text(),'Trending Post Graduate')]/parent::div//a[@title='Business Analysis Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[PMP Plus Certification Training Course] | 11.12 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 PMP Plus Certification Training Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for PMP Plus Certification Training Course is : https://www.simplilearn.com/pmp-plus-bundle-masters-program [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='PMP Plus Certification Training Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[Data Science Certifiation Course] | 11.55 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 Data Science Certifiation Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for Data Science Certifiation Course is : https://www.simplilearn.com/big-data-and-analytics/senior-data-scientist-masters-program-training [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='Data Science Certifiation Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[Data Analyst Course] | 10.99 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 Data Analyst Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for Data Analyst Course is : https://www.simplilearn.com/data-analyst-masters-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='Data Analyst Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[Masters in Artificial Intelligence] | 11.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 Masters in Artificial Intelligence [32mINFO [0m setup:test_SL_footer_check.py:582 URL for Masters in Artificial Intelligence is : https://www.simplilearn.com/masters-in-artificial-intelligence [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='Masters in Artificial Intelligence'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[Cloud Architect Certification Training Course] | 10.96 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 Cloud Architect Certification Training Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for Cloud Architect Certification Training Course is : https://www.simplilearn.com/cloud-solutions-architect-masters-program-training [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='Cloud Architect Certification Training Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[DevOps Engineer Certification Training Course] | 11.03 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 DevOps Engineer Certification Training Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for DevOps Engineer Certification Training Course is : https://www.simplilearn.com/devops-engineer-masters-program-certification-training [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='DevOps Engineer Certification Training Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[Digital Marketing Course] | 11.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 Digital Marketing Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for Digital Marketing Course is : https://www.simplilearn.com/advanced-digital-marketing-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='Digital Marketing Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[Cyber Security Expert Course] | 11.15 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 Cyber Security Expert Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for Cyber Security Expert Course is : https://www.simplilearn.com/cyber-security-expert-master-program-training-course [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='Cyber Security Expert Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[MEAN Stack Developer Course] | 11.51 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 MEAN Stack Developer Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for MEAN Stack Developer Course is : https://www.simplilearn.com/full-stack-web-developer-mean-stack-certification-training [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='MEAN Stack Developer Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingMP::test_SL_Footer_check_trending_MP[Business Analyst Course] | 10.95 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:576 Business Analyst Course [32mINFO [0m setup:test_SL_footer_check.py:582 URL for Business Analyst Course is : https://www.simplilearn.com/business-analyst-certification-training-course [32mINFO [0m setup:test_SL_footer_check.py:588 Dynamic Locator : //p[contains(text(),'Trending Master')]/parent::div//a[@title='Business Analyst Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[PMP Certification Training Course] | 11.25 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 PMP Certification Training Course [32mINFO [0m setup:test_SL_footer_check.py:673 URL for PMP Certification Training Course is : https://www.simplilearn.com/project-management/pmp-certification-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='PMP Certification Training Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[CSM Certification Course] | 11.32 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 CSM Certification Course [32mINFO [0m setup:test_SL_footer_check.py:673 URL for CSM Certification Course is : https://www.simplilearn.com/agile-and-scrum/csm-certification-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='CSM Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[Data Science with Python Course] | 11.47 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 Data Science with Python Course [32mINFO [0m setup:test_SL_footer_check.py:673 URL for Data Science with Python Course is : https://www.simplilearn.com/big-data-and-analytics/python-for-data-science-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='Data Science with Python Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[TOGAF Certification Course] | 11.01 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 TOGAF Certification Course [32mINFO [0m setup:test_SL_footer_check.py:673 URL for TOGAF Certification Course is : https://www.simplilearn.com/it-service-management/togaf-certification-program-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='TOGAF Certification Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[ITIL 4 Foundation Certification Training Course] | 10.93 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 ITIL 4 Foundation Certification Training Course [32mINFO [0m setup:test_SL_footer_check.py:673 URL for ITIL 4 Foundation Certification Training Course is : https://www.simplilearn.com/it-service-management/itil-foundation-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='ITIL 4 Foundation Certification Training Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[CISSP Certification Training] | 11.31 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 CISSP Certification Training [32mINFO [0m setup:test_SL_footer_check.py:673 URL for CISSP Certification Training is : https://www.simplilearn.com/cyber-security/cissp-certification-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='CISSP Certification Training'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[Big Data Hadoop Course] | 11.65 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 Big Data Hadoop Course [32mINFO [0m setup:test_SL_footer_check.py:673 URL for Big Data Hadoop Course is : https://www.simplilearn.com/big-data-and-analytics/big-data-and-hadoop-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='Big Data Hadoop Course'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingCourses::test_SL_Footer_check_trending_Courses[Leading SAFe ® 6 training with SAFe Agilist Certification] | 11.90 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:667 Leading SAFe ® 6 training with SAFe Agilist Certification [32mINFO [0m setup:test_SL_footer_check.py:673 URL for Leading SAFe ® 6 training with SAFe Agilist Certification is : https://www.simplilearn.com/agile-and-scrum/safe-agilist-certification-training [32mINFO [0m setup:test_SL_footer_check.py:679 Dynamic Locator : //p[contains(text(),'Trending Courses')]/parent::div//a[@title='Leading SAFe ® 6 training with SAFe Agilist Certification'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Python Tutorial] | 12.02 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Python Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Python Tutorial is : https://www.simplilearn.com/tutorials/python-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Python Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[JavaScript Tutorial] | 11.87 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 JavaScript Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for JavaScript Tutorial is : https://www.simplilearn.com/tutorials/javascript-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='JavaScript Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Java Tutorial] | 12.00 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Java Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Java Tutorial is : https://www.simplilearn.com/tutorials/java-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Java Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Angular Tutorial] | 12.69 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Angular Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Angular Tutorial is : https://www.simplilearn.com/tutorials/angular-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Angular Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Node.js Tutorial] | 11.49 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Node.js Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Node.js Tutorial is : https://www.simplilearn.com/tutorials/nodejs-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Node.js Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Docker Tutorial] | 11.82 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Docker Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Docker Tutorial is : https://www.simplilearn.com/tutorials/docker-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Docker Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Git Tutorial] | 11.69 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Git Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Git Tutorial is : https://www.simplilearn.com/tutorials/git-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Git Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Kubernetes Tutorial] | 11.30 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Kubernetes Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Kubernetes Tutorial is : https://www.simplilearn.com/tutorials/kubernetes-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Kubernetes Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[Power BI Tutorial] | 11.11 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 Power BI Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for Power BI Tutorial is : https://www.simplilearn.com/tutorials/power-bi-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='Power BI Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTrendingResources::test_SL_Footer_check_trending_Resources[CSS Tutorial] | 11.34 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:758 CSS Tutorial [32mINFO [0m setup:test_SL_footer_check.py:764 URL for CSS Tutorial is : https://www.simplilearn.com/tutorials/css-tutorial [32mINFO [0m setup:test_SL_footer_check.py:770 Dynamic Locator : //p[contains(text(),'Trending Resources')]/parent::div//a[@title='CSS Tutorial'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTerms::test_SL_Footer_check_terms[Terms of Use] | 15.17 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:848 Terms of Use [32mINFO [0m setup:test_SL_footer_check.py:854 URL for Terms of Use is : https://www.simplilearn.com/terms-and-conditions#terms-of-use [32mINFO [0m setup:test_SL_footer_check.py:860 Dynamic Locator : //ul[@class='simpli_terms']//li/a[@title='Terms of Use'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTerms::test_SL_Footer_check_terms[Privacy Policy] | 12.23 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:848 Privacy Policy [32mINFO [0m setup:test_SL_footer_check.py:854 URL for Privacy Policy is : https://www.simplilearn.com/terms-and-conditions#privacy-policy [32mINFO [0m setup:test_SL_footer_check.py:860 Dynamic Locator : //ul[@class='simpli_terms']//li/a[@title='Privacy Policy'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTerms::test_SL_Footer_check_terms[Refund Policy] | 12.18 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:848 Refund Policy [32mINFO [0m setup:test_SL_footer_check.py:854 URL for Refund Policy is : https://www.simplilearn.com/terms-and-conditions#refund-policy [32mINFO [0m setup:test_SL_footer_check.py:860 Dynamic Locator : //ul[@class='simpli_terms']//li/a[@title='Refund Policy'] | |||
Passed | test_SL_footer_check.py::TestSLFooterCheckTerms::test_SL_Footer_check_terms[Reschedule Policy] | 12.27 | |
-------------------------------Captured log call-------------------------------- [32mINFO [0m setup:test_SL_footer_check.py:848 Reschedule Policy [32mINFO [0m setup:test_SL_footer_check.py:854 URL for Reschedule Policy is : https://www.simplilearn.com/terms-and-conditions#rescheduling-policy [32mINFO [0m setup:test_SL_footer_check.py:860 Dynamic Locator : //ul[@class='simpli_terms']//li/a[@title='Reschedule Policy'] |