Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > microsoft.public.scripting.vbscript > #12458
| From | "Mayayana" <mayayana@invalid.nospam> |
|---|---|
| Newsgroups | microsoft.public.scripting.vbscript |
| Subject | Re: how to wait for website? |
| Date | 2022-06-02 08:30 -0400 |
| Organization | A noiseless patient Spider |
| Message-ID | <t7aagp$h6t$1@dont-email.me> (permalink) |
| References | <jfr6hpFcc0oU1@mid.individual.net> <jfr6uqFcethU1@mid.individual.net> |
"Louis Noser" <louis.noser@gmx.ch> wrote
| > ...I've attached the code
| > I have so far.
|
| Here is the code:
|
| Dim url, a
| Set url= CreateObject("WScript.Shell")
| url.Run
|
"https://login.raiffeisen.ch/de?Location=https%3A%2F%2Febanking.raiffeisen.ch%2Fapp&webIAMContractNo=3058846EACFB08B56E05B3E9A31DAF5F",
| 9
| WScript.Sleep 10000
| Set a = CreateObject("WScript.Shell")
| a.SendKeys "{TAB}"
The typical approach is to loop until document.readyState = 4.
Then once you get it working you throw out the script
because online banking is a crazy thing to do and automating
it with a script is even crazier. :)
Back to microsoft.public.scripting.vbscript | Previous | Next — Previous in thread | Next in thread | Find similar
how to wait for website? Louis Noser <louis.noser@gmx.ch> - 2022-06-02 09:18 +0200
Re: how to wait for website? Louis Noser <louis.noser@gmx.ch> - 2022-06-02 09:25 +0200
Re: how to wait for website? "Mayayana" <mayayana@invalid.nospam> - 2022-06-02 08:30 -0400
Re: how to wait for website? Louis Noser <louis.noser@gmx.ch> - 2022-06-02 15:53 +0200
Re: how to wait for website? "Mayayana" <mayayana@invalid.nospam> - 2022-06-02 14:43 -0400
Re: how to wait for website? JJ <jj4public@gmx.com> - 2022-06-03 17:57 +0700
Re: how to wait for website? "Mayayana" <mayayana@invalid.nospam> - 2022-06-03 13:16 -0400
csiph-web