php - Can't fetch contents of IFrame -
i'm dealing page has 1 iframe header used control pages above it, "page skip" , "jump to" controls. need fetch information located inside frame. using browser ok. select cursor, copy.. done.
the problem have page contents programmatically php or python.
so if try urlopen main page html contents like
<frameset rows="140,*" framespacing="0" frameborder="no" border="0"> <frame src="/header.do?page=1" name="mainframe" scrolling="no" noresize="noresize" id="mainframe" title="mainframe" marginwidth="0" /> <frame name="bottomframe" scrolling="no" noresize="noresize" marginwidth="0" id="bottomframe" title="bottomframe" /> </frameset> but when urlopen header.do?page=1 file directly won't load proper information need. header.do works when iframe embedded, or if needs more arguments besides page=1 main page passing somehow (i didn't find anything)
short-case: need programmatically fetch information inside iframe. info loads when file embedded. how deal it?
Comments
Post a Comment