I have some issues with "expected_title" procedure from watir-page-helper. It is throwing an error like the current web page has a different title than the expected one, although it is the correct title:
RuntimeError: Expected title 'Some title' instead of 'Some Title'.
This happens randomly, and my tests fail frequently on different pages. The website on which I am working is loading in a reasonable amount of time, I don't think it is a loading page issue.
To initialize the pages I am using the next method:
@new_mail_editor = Module::Page.new(@browser, false)
This is for pages that are opened when accessing links.
Does someone have a clue why this is happening? Is there a way to dodge this issue?
Thank you.