Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Basically what I need to do is get data from an already open IE window. I want to run the Perl script every minute to get the data that a user has entered in the browser window.

I can find the browser windows using Win32::Gui & GuiTest but from my searches it looks like I need to use Win32::OLE to extract anything from the windows. I'm hoping to fiddle with the DOM to get what I need from the web page and possibly change values later on.

So I've tried the GetActiveObject and EnumAllObjects and cannot find any Internet Explorer window although I can find Excel windows. I saw some examples on the web but they all seem to open new IE windows and that does not help me. I need to get to windows that are already open.

I'm using IE 6.0.29 on XP SP2 and Perl V5.8.8. Here is some of the code that does not work for me.

use strict; use warnings; use Cwd; use Win32::Gui; use Win32::Clipboard; use Win32::GuiTest qw(:ALL); # Had to use GuiTest to do a sendkeys. Also found ShowWind-minimize me +thod (don't use hide or you will never see the window again) use Win32::OLE; # need this to open up and IE window use Win32::OLE qw(EVENTS in with valof ); use Win32::OLE::Variant; Win32::OLE->Option( Warn => 2 ); # Always warn with verbose error mess +ages # try to find all OLE objects my $Count = Win32::OLE->EnumAllObjects(sub { my $Object = shift; my $Class = Win32::OLE->QueryObjectType($Object); printf "# Object=%s Class=%s\n", $Object, $Class; }); print "---- The count of all OLE objects is '$Count'.\n"; my $loExcel; $loExcel = Win32::OLE->GetActiveObject('Excel.Application'); if ( defined $loExcel ) { print "Found Excel.\n"; } else { print "Did not find and Excel object. LastError=", Win32::OLE->LastError, "\n"}; my $IE; $IE = Win32::OLE->GetActiveObject( "InternetExplorer.Application" ); print "=== GetActiveObject for ie returns '$IE'\n\n" if ( defined $IE) +; if ( !defined $IE ) { print "Can not find open IE object. Creating one...\n"; # $IE = Win32::OLE->new( 'InternetExplorer.Application', "Quit" +) $IE = Win32::OLE->new( "InternetExplorer.Application" ) or die "Unable to create a IE Object\n"; ################ need logic in here to wait for window to open # +############################# # Win32::OLE->WithEvents($IE,\&Event,"DWebBrowserEvents2"); }
This is the output I get when there is an Excel and IE window open.
---- The count of all OLE objects is '0'. Found Excel. Can not find open IE object. Creating one... The current directory is H:/src/Perl. Url found from IE object 'file://H:\src\Perl\osmerrors1.html' is=file: +//H:/src/P erl/osmerrors1.html?5,now.
Any help is greatly appreciated. I've spent many hours with the google monster and haven't found anything that works yet. So I now have admit I'm over my head and ask for help. THX, Nick

In reply to How to get DOM from currently open IE browser. by dadto7

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-23 17:58 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found