Micro Focus QTP (UFT) Forums

Full Version: Perform Action on Browser using only VBScript
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I wanna know, Can we perform actions on objects in Browser if we don't have QTP... Using only VBScript.
Well Interesting Question. as par my understanding 'YES' we can do that but for this purpose User must have good knowledge of Win32 API and user needs to do extensive coding.

Basically all the automation tool provide an interface to access the application and it consist library files and other required settings.

~Regards
QTP basically manipulates the Internet Explorer COM object. You can create it and use the COM functions to automate IE in pure VBScript. Read about it here: http://msdn.microsoft.com/en-us/library/...85%29.aspx

Code:
Set IE = CreateObject("InternetExplorer.Application")