Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
How do I set a value for Environment? I've tried several things like this:$VAR1 = bless( { 'Test' => bless( { 'Environment' => bless( {}, 'Win32::OLE' ), ...
Any idea what I'm doing wrong? Thanksmy $testObj = Win32::OLE->new( $self->{qtp}->Test->Environment ); $testObj->{'DUT_Version'} = "123"; $self->{qtp}->Test->Environment->{'Value'} = $testObj;
|
|---|