You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It returns success, even when I'm not on that page.
If I change my HomePage to:
[PageNavigation("/Home")]
public class HomePage
{
}
Then it correctly returns an error. I'm using Selenium. I'm just starting to debug the code now to figure out where this happens, but seems like it might be UriHelper.GetQualifiedPageUriRegex() that's used in BrowserBase.CheckIsOnPage().
Does this seem like a legit bug, or is this a known issue?
The text was updated successfully, but these errors were encountered:
jonstelly
changed the title
WaitForPageAction incorrectly returns true for PageNavigation("/")
WaitForPageAction incorrectly returns success for PageNavigation("/")
Dec 14, 2015
[PageNavigation("/Home/Submit")]
public class ThankYouPage
My test looks like:
Given I navigated to the home page
And <I fill in some stuff>
When I choose the submit button
And I wait for the thank you page
Then I am on the thank you page
That seems to work fine for me. I was getting flaky results before I added the "And I wait for the thank you page".
I have a HomePage:
If I try to use:
It returns success, even when I'm not on that page.
If I change my HomePage to:
Then it correctly returns an error. I'm using Selenium. I'm just starting to debug the code now to figure out where this happens, but seems like it might be UriHelper.GetQualifiedPageUriRegex() that's used in BrowserBase.CheckIsOnPage().
Does this seem like a legit bug, or is this a known issue?
The text was updated successfully, but these errors were encountered: