IEC Controller and element

2006-11-28 Thread Danny Scaleno
Hello,

using IEC Controller,
anybody knows how to capture the head part of an html page like this one?




Object=window.open('test.html','test1','name="test1"');
Object.focus()





it seems IEC is able to capture only the  part.
I need to parse the string inside the tag 

Re: IEC Controller and element

2006-11-30 Thread Danny Scaleno
Maybe this help someone else.
The solution comes with old VB6. It's "COM Land" so
introspecting the VB WebBrowser Control object I found properties and 
methods to correctly access all parts of the python IEC.Document object 
returned by the IEC Controller

http://www.mayukhbose.com/python/IEC/index.php

Great library !
Danny

> using IEC Controller,
> anybody knows how to capture the head part of an html page like this one?
> 
> 
> 
> 
> Object=window.open('test.html','test1','name="test1"');
> Object.focus()
> 
> 
> 
> 
 > it seems IEC is able to capture only the  part.
 > I need to parse the string inside the tag