My Verification Works in IE but not in Firefox
PROBLEM
My recorded verification step works in IE but fails in Firefox.
SOLUTION
Test Studio tries very hard to isolate you from browser differences, but cannot do so 100% in all cases. For example, IE will translate into a single space character before passing it to IE. But Firefox does not do this. As a result if you're trying to do a string comparison of some text, it will pass when you record it in IE, but fail when you try to execute the test in Firefox.
One quick solution is to include two separate verification steps and specify which browser each step will run against. All test steps include a RunsAgainst property setting:
The default is AllBrowsers. Copy your verification step, set one to InternetExplorerOnly, and the other to FirefoxOnly. Adjust the verification for Firefox to work and your test will pass no matter which browser you target for execution.
If you need to do a similar action in code, you can use code like this:
if (ActiveBrowser.BrowserType == BrowserType.InternetExplorer)
{
// Do IE specific action
}
else if (ActiveBrowser.BrowserType == BrowserType.FireFox)
{
// Do Firefox specific action
}
else
{
throw new ApplicationException("Unknown browser type");
}
' Do IE specific action
If ActiveBrowser.BrowserType = BrowserType.InternetExplorer Then
' Do Firefox specific action
ElseIf ActiveBrowser.BrowserType = BrowserType.FireFox Then
Else
Throw New ApplicationException("Unknown browser type")
End If