3
votes
2answers
362 views

Clear SSL State using vbscript

As a part of my project I have to automate a web application running over secure socket layer. So I have to clear SSL state, Cache, Browsing history using vbscript, after logout, if some account ...
0
votes
1answer
435 views

automate page scroll using vbscript

I need to take complete snapshot of a page using vbscript, and to do this I need to scroll a bit down. Actually I am able to take half of the page in snapshot but I need to take the remaining part ...
1
vote
2answers
928 views

automate click on a link

I am trying to click a link on a page, it don't have any id and not having a unique class name. Only unique thing about the function is the onclick handler <a href="#" onclick="closepopup('popup', ...
1
vote
1answer
3k views

Saving snapshot using vbscript

I am new to vbscript. I want to save a snapshot taken using vbscript of a internet explorer window opened by vbscript. Code to load the page Dim IE, stateString Set IE = ...
0
votes
1answer
2k views

Internet explorer automation busy v/s readystate property

I am new to vbscript and while reading i found some code as Do While ie.busy stateString = stateString & " " & cstr(ie.readystate) loop do while ie.readystate <> 4 stateString = ...
0
votes
2answers
2k views

Converting VB.NET code to VBScript

I have this snippet of VB.NET code that I want to convert to VBScript. It basically starts Microsoft Word, displays the Open dialog and mail merges the selected document. Any help will be highly ...