Forum Discussion
lalit_chand
15 years agoOccasional Contributor
Hello David,
Thanks for your reply.
Below is the script , i am using to set the value of File Chooser Dialog and it is working fine on IE 7 .
*** VBscript *****
'' remote location file name
str_feeFile="[some remote location of file]"
BuiltIn.Delay(5000)
Set object = window.NativeWebObject.Find("id","file_control")
object.Keys(str_feeFile)
window.wait
*******************
Note : i also tried object.value = str_feeFile instead of object.Keys(str_feeFile) in the above code.
There is no error/warning in the log.
Any pointer would be great.
Regards,
Lalit
Thanks for your reply.
Below is the script , i am using to set the value of File Chooser Dialog and it is working fine on IE 7 .
*** VBscript *****
'' remote location file name
str_feeFile="[some remote location of file]"
BuiltIn.Delay(5000)
Set object = window.NativeWebObject.Find("id","file_control")
object.Keys(str_feeFile)
window.wait
*******************
Note : i also tried object.value = str_feeFile instead of object.Keys(str_feeFile) in the above code.
There is no error/warning in the log.
Any pointer would be great.
Regards,
Lalit