I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2005-11-23 11:48:30-08 by jstenzel
title() does not reflect title changes
Hello,

when changing the title of an W32::IE::M object window, the title() method does not reflect that change.

# load modules use Win32::IE::Mechanize; use Win32::GuiTest qw(:ALL); # build IE object my $ie=Win32::IE::Mechanize->new(visible => 1); # enter page my $url="..."; $ie->get($url); # modify and report page title my $ieHandle; WaitWindow($ie->title, 10); WMSetText($ieHandle=(FindWindowLike(undef, $ie->title))[0], 'New title'); warn('Configured page title is "', $ie->title, qq(".));

Regards

Jochen Stenzel

Direct Responses: 1398 | Write a response