How to program in SAS to launch a url in IE Browser on my computer and click on a link?
@radha009 wrote:
How to program in SAS to launch a url in IE Browser on my computer and click on a link?
This question can not sufficiently be answered without knowledge of your SAS architecture.
On windows from a command prompt, you can run:
start iexplore "http://sas.com"
To open IE to sas.com.
So if you're in PC SAS, it could be a simple as submitting:
x 'start iexplore "http://sas.com"' ;
That will open internet explorer to a specified URL. Clicking a link would take some sort of automation. But if you just want to get to one URL, probably easiest to just specify it in the command.
But as @Kurt_Bremser mentioned, this approach may not work in your SAS environment.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.