Forum Discussion
Ryan_Moran
10 years agoValued Contributor
function ViewAllTrayItems(theLink, browser, env, crBrowser, dWait) {
theTrays = theLink.Panel("middle").Panel("middleInner").Panel("onboardingDeckContainer").Panel("cardDeck");
findTray = theTrays.Section("sbTray19").FindChild(["ObjectType","Name"],["Link", "Link*0*"], 1);
if (findTray.Exists) {
findTray.Click();
} else {
Log.Error("Nope, didn't find it.");
}
theTrays.Section("sbTray19").Link(0).Click();
}