I am a newbie to robot framework. I am experimenting with the Browser library to test contents of all pages in a given website. I used the Crawl Site
functionality of the library and that works without issues. Now I am trying to test if the page title of the page being crawled does not contain the string ‘Page not found’. I do the assertion on the page title inside the page_crawl_keyword
. Here is the code.
*** Test Cases ***
Crawl and find errors
Crawl Site ${URL}
… max_number_of_page_to_crawl=2
… page_crawl_keyword=test_page*** Keywords ***
test_page
${title}= Get Title
Log to Console Title of page crawled is ${title}
Should Not Contain ${title} ‘Page not found’
This assertion does not seem to work. Are assertions expected to work within the page_crawl_keyword
?