Mikhinja has asked for the wisdom of the Perl Monks concerning the following question:

Hello,

I want to navigate using IEAutomation and in order to do so I need access to a pannel which appears to be a nested frame.

The problem is that the parent frame has no id or name, the htm source looks like this:

<frameset rows="50,*" border="0"> <frame frameborder="0" noresize scrolling="no" src="asc_product.htm"> <frameset cols="150,*"> <frame frameborder="0" name="left" noresize scrolling="no" src="/CMD0/ +xml_modes.xml?cmd=xml-modes&amp;menu=left_menu.xml&amp;xsl=left.xsl"> <frame frameborder="0" name="right" noresize scrolling="no" src="gener +al.xml"> </frameset> </frameset>

I can't be sure before I try it, but I think I need both the frames named "left" and "right" at different times.

I've done a quick search and could not find the appropriate method of doing this. Can you help me, please?

Thank you, Vlad

Replies are listed 'Best First'.
Re: anonymous frame in IEAutomation
by Anonymous Monk on Jun 10, 2011 at 06:30 UTC