I use the following to open a webpage with the intent to have the IE
window maximized. However, the window opens in a small size.
my $ie = Win32::IEAutomation->new(visible=>1, maximize=>1);
$ie->gotoURL('http://www.google.com', 0);
Is there anything that needs to be done differently? Are there o
On Jan 2, 2:33 am, chas.ow...@gmail.com (Chas. Owens) wrote:
> On Thu, Jan 1, 2009 at 17:12, Collaborate wrote:
> > On Jan 1, 3:46 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote:
> >> Collaborate wrote:
> >> > After wiriting the output of a Perl program to a
On Jan 2, 2:33 am, chas.ow...@gmail.com (Chas. Owens) wrote:
> On Thu, Jan 1, 2009 at 17:12, Collaborate wrote:
> > On Jan 1, 3:46 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote:
> >> Collaborate wrote:
> >> > After wiriting the output of a Perl program to a
On Jan 1, 3:46 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote:
> Collaborate wrote:
> > After wiriting the output of a Perl program to a text file, I'd like
> > to immediately open (display the contents of) that text file from
> > within the code so I can see what
After wiriting the output of a Perl program to a text file, I'd like
to immediately open (display the contents of) that text file from
within the code so I can see what's in the file. I am wondering if
there is a simple way to accomlish this. Thanks.
--
To unsubscribe, e-mail: beginners-unsubscr
I have a few applications where I can effectively use the
Win32:IEAutomation module. I am making sure I understand how it works
and had some difficulty. For example, I am not able to print the URL
of a webpage using the code below. I’d appreciate your comments on how
to modify the code.
#!C:\Perl
On Dec 23, 3:34 pm, nore...@gunnar.cc (Gunnar Hjalmarsson) wrote:
> Collaborate wrote:
> > I am wondering if there is a way to copy a webpage to a text file
> > using Perl.
>
> use LWP::Simple;
> my $url = 'http://www.example.com/';
> o
I am wondering if there is a way to copy a webpage to a text file
using Perl. All I need is to copy as unformatted text.
I would like to match certain strings on pages written in javascript
and to my understanding, www::mechnize does not work for this
application.
--
To unsubscribe, e-mail: beg
I have an application that requires cursor/pointer control as follows:
I would like to move the cursor to a specific target location on a web
page and then click on a link. I would also like to be able to enter
text into boxes after moving the cursor to the location of the box.
I would appreciate