tnhurst57 has asked for the wisdom of the Perl Monks concerning the following question:
How do you Click a cell in a table. I have tried every imaginable combination. Here is my latest version:
my $mytable = $ie->getTable("id:","SN_include"); my $HR = $mytable->tableCells(4, 4); my $CT = $HR->cellText; print "HR=$HR celltext=$CT\n"; $EL = Win32::IEAutomation::getElement($HR); print "EL=$EL\n"; Win32::IEAutomation::Element::Click($HR);
20071026 Janitored by Corion: Added formatting, code tags, as per Writeup Formatting Tips
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: IEAutomation Cell Click
by TOD (Friar) on Oct 25, 2007 at 05:32 UTC | |
by tnhurst57 (Initiate) on Oct 25, 2007 at 13:54 UTC |