Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Looking for help to automate web site with VBScript

Status
Not open for further replies.

svkroy

MIS
Mar 26, 2021
1
IN
Hi,

I am trying to automate a series of actions on a website, where I need to click on buttons, and insert text on some fields via VBScript. The VBScript would be locally saved on my system and is not a part of the web page.

The website structure is like this (I suspect its an iframe, though i am a novice in web technologies):

Capture_bose1a.jpg


The highlighted part is the element I am trying to access/click. I would try to write to other fields, but that can wait. Any help would be appreciated.

Any other language or JavaScript based solutions are also welcome.

Thanks a lot for sparing a thought !
 
Can you import files with different extensions into the website script?
 
I am back. Here is something that may help.

Dim IE
Dim MyDocument
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = 0
IE.navigate "
Only works with internet exporer, though.

Anonymously,
John Space
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top