Sponsored Content
Top Forums Shell Programming and Scripting perl script using Win32::IEAutomation Post 302142207 by Yogesh Sawant on Thursday 25th of October 2007 04:36:59 AM
Old 10-25-2007
$ie->getImage('class:',"IceGphImg")->getImage('alt:',"Incidents")->Click; would produce error

One way of debugging I can think is (need not be the optimal way): get a list of all images on the form using getAllImages() function. In this list, check the attributes of the image on which you wish to click. If you find any unique attribute, use it as argument to getImage() function.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

perl win32::ieautomation

Hi friends, I am using win32::ieautomation to automate portal Please help me with below line of code: my $target_cell = $table_object->tableCells(2, 5); what is $table_object in above line I am using $browser->getTable('id:', "table_id")->tableCells(2,5); The error I get is can't... (0 Replies)
Discussion started by: gurukottur
0 Replies

2. Shell Programming and Scripting

execution status of gotoURL in Win32::IEAutomation

Hi, I am using Win32::IEAutomation module to automate my Web based application. I am trying to prepare a report for the test cases I automated. The problem is I am unable to get the execution status of the commands gotoURL, getButton .... to know if my button click or url redirection is... (2 Replies)
Discussion started by: gurukottur
2 Replies

3. Windows & DOS: Issues & Discussions

Perl in Win32

Dear, Did anybody knnow how to run the Perl script or whatever mean for testing the script in Windows? (1 Reply)
Discussion started by: Paris Heng
1 Replies

4. Shell Programming and Scripting

Can anyone recommend a book for perl WIN32

Is there a book available that goes into the PERL WIN32 module in depth ? I like the Unix in a nutshell or Perl Black Book by Holzner way of teaching. Teach by example. Anyone ? Thanks Popeye, Olive and sweetpea :p (1 Reply)
Discussion started by: popeye
1 Replies

5. Shell Programming and Scripting

win32::IEAutomation

Hi folks, what is the command used to click on the 'x' button of popup browser window in perl windows.I am using WIN32::IEAutomation module. Please any one can help on this.... (3 Replies)
Discussion started by: jyo123.jyothi
3 Replies

6. Shell Programming and Scripting

PERL Win32::OLE Inserting Picture in Excel

I am trying to insert a picture into a worksheet in Excel using Perl the following is the code use Win32::OLE; use Win32::OLE::Const "Microsoft Excel"; use Win32::OLE qw(in with); # Initiate Excel application $Excel = Win32::OLE->new('Excel.Application', 'Quit'); $Excel->{Visible} =1; #... (1 Reply)
Discussion started by: cold_Que
1 Replies

7. Shell Programming and Scripting

win32 ole in deepr details in perl

Hello Gurus, I am begginer in perl. I would like to ask several questions, some related to perl and its syntax but most will be regarding to WIN32 OLE. My main goal is to develop script that will check word document structure (return some information) and make some changes in this document (if it... (0 Replies)
Discussion started by: wakatana
0 Replies

8. Windows & DOS: Issues & Discussions

Getting Error when using Module Win32::IEAutomation;

Hi All, How are you Guys? I am using the Code use Win32::IEAutomation; # Creating new instance of Internet Explorer my $ie = Win32::IEAutomation->new( visible => 1, maximize => 1); # Site navigation $ie->gotoURL('http://www.google.com');... (4 Replies)
Discussion started by: adisky123
4 Replies

9. UNIX for Advanced & Expert Users

X-Win32 not working

I am trying to export windows display to my unix SunOS I have Windows server 2000 which has X-Win32 v6 installed. I start X-Win32. I then go to configure session with the following details. 1. host name: myhost 2. command: xterm -ls 3 username: user1 4 password: password Then i right... (1 Reply)
Discussion started by: mohtashims
1 Replies

10. Programming

PERL: In a perl-scripttTrying to execute another perl-script that SETS SOME VARIABLES !

I have reviewed many examples on-line about running another process (either PERL or shell command or a program), but do not find any usefull for my needs way. (Reviewed and not useful the system(), 'back ticks', exec() and open()) I would like to run another PERL-script from first one, not... (1 Reply)
Discussion started by: alex_5161
1 Replies
tiff(n)                                                       TIFF image manipulation                                                      tiff(n)

__________________________________________________________________________________________________________________________________________________

NAME
tiff - TIFF reading, writing, and querying and manipulation of meta data SYNOPSIS
package require Tcl 8.2 package require tiff ?0.2.1? ::tiff::isTIFF file ::tiff::byteOrder file ::tiff::numImages file ::tiff::dimensions file ?image? ::tiff::imageInfo file ?image? ::tiff::entries file ?image? ::tiff::getEntry file entry ?image? ::tiff::addEntry file entry ?image? ::tiff::deleteEntry file entry ?image? ::tiff::getImage file ?image? ::tiff::writeImage image file ?entry? ::tiff::nametotag names ::tiff::tagtoname tags ::tiff::debug file _________________________________________________________________ DESCRIPTION
This package provides commands to query, modify, read, and write TIFF images. TIFF stands for Tagged Image File Format and is a standard for lossless storage of photographical images and associated metadata. It is specified at http://partners.adobe.com/public/devel- oper/tiff/index.html. Multiple images may be stored in a single TIFF file. The ?image? options to the functions in this package are for accessing images other than the first. Data in a TIFF image is stored as a series of tags having a numerical value, which are represented in either a 4 digit hexadecimal format or a string name. For a reference on defined tags and their meanings see http://www.awaresystems.be/imaging/tiff/tiff- tags.html COMMANDS
::tiff::isTIFF file Returns a boolean value indicating if file is a TIFF image. ::tiff::byteOrder file Returns either big or little. Throws an error if file is not a TIFF image. ::tiff::numImages file Returns the number of images in file. Throws an error if file is not a TIFF image. ::tiff::dimensions file ?image? Returns the dimensions of image number ?image? in file as a list of the horizontal and vertical pixel count. Throws an error if file is not a TIFF image. ::tiff::imageInfo file ?image? Returns a dictionary with keys ImageWidth, ImageLength, BitsPerSample, Compression, PhotometricInterpretation, ImageDescription, Orientation, XResolution, YResolution, ResolutionUnit, DateTime, Artist, and HostComputer. The values are the associated properties of the TIFF ?image? in file. Values may be empty if the associated tag is not present in the file. puts [::tiff::imageInfo photo.tif] ImageWidth 686 ImageLength 1024 BitsPerSample {8 8 8} Compression 1 PhotometricInterpretation 2 ImageDescription {} Orientation 1 XResolution 170.667 YResolution 170.667 ResolutionUnit 2 DateTime {2005:12:28 19:44:45} Artist {} HostComputer {} There is nothing special about these tags, this is simply a convience procedure which calls getEntry with common entries. Throws an error if file is not a TIFF image. ::tiff::entries file ?image? Returns a list of all entries in the given file and ?image? in hexadecimal format. Throws an error if file is not a TIFF image. ::tiff::getEntry file entry ?image? Returns the value of entry from image ?image? in the TIFF file. entry may be a list of multiple entries. If an entry does not exist, an empty string is returned set data [::tiff::getEntry photo.tif {0131 0132}] puts "file was written at [lindex $data 0] with software [lindex $data 1]" Throws an error if file is not a TIFF image. ::tiff::addEntry file entry ?image? Adds the specified entries to the image named by ?image? (default 0), or optionally all. entry must be a list where each element is a list of tag, type, and value. If a tag already exists, it is overwritten. ::tiff::addEntry photo.tif {{010e 2 "an example photo"} {013b 2 "Aaron F"}} The data types are defined as follows 1 BYTE (8 bit unsigned integer) 2 ASCII 3 SHORT (16 bit unsigned integer) 4 LONG (32 bit unsigned integer) 5 RATIONAL 6 SBYTE (8 bit signed byte) 7 UNDEFINED (uninterpreted binary data) 8 SSHORT (signed 16 bit integer) 9 SLONG (signed 32 bit integer) 10 SRATIONAL 11 FLOAT (32 bit floating point number) 12 DOUBLE (64 bit floating point number) Throws an error if file is not a TIFF image. ::tiff::deleteEntry file entry ?image? Deletes the specified entries from the image named by ?image? (default 0), or optionally all. Throws an error if file is not a TIFF image. ::tiff::getImage file ?image? Returns the name of a Tk image containing the image at index ?image? from file Throws an error if file is not a TIFF image, or if image is an unsupported format. Supported formats are uncompressed 24 bit RGB and uncompressed 8 bit palette. ::tiff::writeImage image file ?entry? Writes the contents of the Tk image image to a tiff file file. Files are written in the 24 bit uncompressed format, with big endian byte order. Additional entries to be added to the image may be specified, in the same format as tiff::addEntry ::tiff::nametotag names Returns a list with names translated from string to 4 digit format. 4 digit names in the input are passed through unchanged. Strings without a defined tag name will throw an error. ::tiff::tagtoname tags Returns a list with tags translated from 4 digit to string format. If a tag does not have a defined name it is passed through unchanged. ::tiff::debug file Prints everything we know about the given file in a nice format. VARIABLES
The mapping of 4 digit tag names to string names uses the array ::tiff::tiff_tags. The reverse mapping uses the array ::tiff::tiff_sgat. LIMITATIONS
[1] Cannot write exif ifd [2] Reading limited to uncompressed 8 bit rgb and 8 bit palletized images [3] Writing limited to uncompressed 8 bit rgb BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category tiff of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. KEYWORDS
image, tif, tiff COPYRIGHT
Copyright (c) 2005-2006, Aaron Faupell <afaupell@users.sourceforge.net> tiff 0.2.1 tiff(n)
All times are GMT -4. The time now is 01:37 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy