report.html

Report generated on 15-Feb-2023 at 12:12:22 by pytest-html v2.1.1

Environment

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

Summary

25 tests ran in 361.82 seconds.

23 passed, 0 skipped, 2 failed, 0 errors, 0 expected failures, 0 unexpected passes

Results

Result Test Duration Links
Failed test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Instagram] 21.34
self = <test_SL_footer_check.TestSLFooterCheck object at 0x000001DE3CDB1E20>, 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(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 0x000001DE3CDB1E20>, 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(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--------------------------------
INFO  setup:test_SL_footer_check.py:230 Instagram INFO  setup:test_SL_footer_check.py:236 URL for Instagram is : https://www.instagram.com/simplilearn_elearning/ INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Instagram'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.instagram.com/simplilearn_elearning/ INFO  setup:test_SL_footer_check.py:85 URL Opened is : https://www.instagram.com/simplilearn_elearning/ INFO  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>
Failed test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[RSS feed] 21.50
self = <test_SL_footer_check.TestSLFooterCheck object at 0x000001DE3CE366D0>, 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 0x000001DE3CE366D0>, 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--------------------------------
INFO  setup:test_SL_footer_check.py:230 RSS feed INFO  setup:test_SL_footer_check.py:236 URL for RSS feed is : https://www.simplilearn.com/feed INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='RSS feed'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/feed INFO  setup:test_SL_footer_check.py:85 URL Opened is : https://www.simplilearn.com/feed INFO  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.51
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Refer and Earn INFO  setup:test_SL_footer_check.py:236 URL for Refer and Earn is : https://www.simplilearn.com/refer-and-earn INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Refer and Earn'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/refer-and-earn INFO  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.51
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Facebook INFO  setup:test_SL_footer_check.py:236 URL for Facebook is : https://www.facebook.com/simplilearn INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Facebook'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.facebook.com/simplilearn INFO  setup:test_SL_footer_check.py:85 URL Opened is : https://www.facebook.com/Simplilearn/
Passed test_SL_footer_check.py::TestSLFooterCheck::test_SL_Footer_check[Twitter] 21.45
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Twitter INFO  setup:test_SL_footer_check.py:236 URL for Twitter is : https://www.twitter.com/simplilearn INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Twitter'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.twitter.com/simplilearn INFO  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] 11.65
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 YouTube INFO  setup:test_SL_footer_check.py:236 URL for YouTube is : https://www.youtube.com/user/Simplilearn INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='YouTube'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.youtube.com/user/Simplilearn INFO  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.88
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 LinkedIn INFO  setup:test_SL_footer_check.py:236 URL for LinkedIn is : https://www.linkedin.com/company/simplilearn INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='LinkedIn'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.linkedin.com/company/simplilearn INFO  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.15
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Telegram INFO  setup:test_SL_footer_check.py:236 URL for Telegram is : https://web.telegram.org/#/im?p=@simplilearnupdates INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Telegram'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://web.telegram.org/#/im?p=@simplilearnupdates INFO  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[About us] 12.43
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 About us INFO  setup:test_SL_footer_check.py:236 URL for About us is : https://www.simplilearn.com/about-us INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='About us'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/about-us INFO  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] 12.00
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Careers INFO  setup:test_SL_footer_check.py:236 URL for Careers is : https://www.simplilearn.com/careers INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Careers'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/careers INFO  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] 13.61
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 In the media INFO  setup:test_SL_footer_check.py:236 URL for In the media is : https://www.simplilearn.com/media INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='In the media'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/media INFO  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] 23.16
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Alumni speak INFO  setup:test_SL_footer_check.py:236 URL for Alumni speak is : https://www.simplilearn.com/reviews INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Alumni speak'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/reviews INFO  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.53
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Grievance redressal INFO  setup:test_SL_footer_check.py:236 URL for Grievance redressal is : https://www.simplilearn.com/grievance-redressal INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Grievance redressal'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/grievance-redressal INFO  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] 10.89
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Contact us INFO  setup:test_SL_footer_check.py:236 URL for Contact us is : https://www.simplilearn.com/contact-us INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Contact us'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/contact-us INFO  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.22
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Become an instructor INFO  setup:test_SL_footer_check.py:236 URL for Become an instructor is : https://www.simplilearn.com/become-our-trainer INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Become an instructor'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/become-our-trainer INFO  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] 10.83
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Blog as guest INFO  setup:test_SL_footer_check.py:236 URL for Blog as guest is : https://www.simplilearn.com/guest-blogging INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Blog as guest'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/guest-blogging INFO  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.36
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Skillup INFO  setup:test_SL_footer_check.py:236 URL for Skillup is : https://www.simplilearn.com/skillup-free-online-courses INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Skillup'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/skillup-free-online-courses INFO  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.97
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Skillup Sitemap INFO  setup:test_SL_footer_check.py:236 URL for Skillup Sitemap is : https://www.simplilearn.com/skillup-sitemap INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Skillup Sitemap'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/skillup-sitemap INFO  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.23
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Resources INFO  setup:test_SL_footer_check.py:236 URL for Resources is : https://www.simplilearn.com/resources INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Resources'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/resources INFO  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] 11.10
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 City Sitemap INFO  setup:test_SL_footer_check.py:236 URL for City Sitemap is : https://www.simplilearn.com/city-sitemap INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='City Sitemap'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/city-sitemap INFO  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] 10.74
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Corporate training INFO  setup:test_SL_footer_check.py:236 URL for Corporate training is : https://www.simplilearn.com/corporate-training INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Corporate training'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/corporate-training INFO  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.24
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Partners INFO  setup:test_SL_footer_check.py:236 URL for Partners is : https://www.simplilearn.com/reseller-partner-program-for-training-courses INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Partners'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/reseller-partner-program-for-training-courses INFO  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] 13.12
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Digital Transformation INFO  setup:test_SL_footer_check.py:236 URL for Digital Transformation is : https://www.simplilearn.com/digital-transformation-training INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Digital Transformation'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://www.simplilearn.com/digital-transformation-training INFO  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.96
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Get the Android App INFO  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 INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Get the Android App'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://play.google.com/store/apps/details?id=com.mobile.simplilearn INFO  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] 10.97
-------------------------------Captured log call--------------------------------
INFO  setup:test_SL_footer_check.py:230 Get the iOS App INFO  setup:test_SL_footer_check.py:236 URL for Get the iOS App is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 INFO  setup:test_SL_footer_check.py:242 Dynamic Locator : (//div[starts-with(@class,'col-md-2')]//a[@title='Get the iOS App'])[1] INFO  setup:test_SL_footer_check.py:84 URL received is : https://apps.apple.com/app/simplilearn/id963042747?ls=1 INFO  setup:test_SL_footer_check.py:85 URL Opened is : https://apps.apple.com/app/simplilearn/id963042747?ls=1