Problem that I am facing is trying to find an child object (file2)after finding an parent object(folder) on page1.
Example:
on page->folder1->file1, file2, file3
folder2-> test1. test2. test3
folder3->subfolder1, subfolder2
I can find folder1, folder2 and folder3 but cannot find file1, file2 and file2 from folder2
Sample code that failes on IE10 with TC9
1. image2 = page.NativeWebObject.Find("title","Match Rules","IMG");
2. image2.click();
3. page.refresh();
4. var b = page.NativeWebObject.Find("innerText","pq* ", "A");
5. b.click();
line4 cannot find the object.
Please note that this worked fine on IE9 and TC8 and also with IE10 and TC9.
Thanks!