Solved
Forum Discussion
lreynolds
2 years agoNew Contributor
You might want to add the following code to the start of your tests to confirm what browsers TC can see, very useful after upgrades of TC / Browser etc.
//Let's put diagnostic in log about browsers test can see
var browser;
for (var i=0; i < Browsers.Count; i++)
{
browser = Browsers.Item(i);
Log.Message("Browser " + aqConvert.IntToStr(i) + " : " + browser.Description);
}