How to create Multiple bot log-in in one page using VBS

pintagos sogatinp

Need assistance on how to create multiple bot log-in using vbs in one webpage only.

For single bot log-in below is what I have tried- can someone edit this to create multiple?

Thanks in advance!

Set a = createobject ("wscript.shell")
a.run "http://yahoo.com"
wscript.sleep (5000)
a.sendkeys ("username")
a.sendkeys chr (9)
wscript.sleep (2000)
a.sendkeys ("password")
a.sendkeys "{Enter}"
call msgbox ("Finished")
wscript.quit

=this only launches 1 login :(

gunjanshah09

You can use for loop for multiple log-in and use array value for username and pwd.

Dim uname(5) 'assign user name value to array element 0 to 5
Dim pwd(5)  'assign password value to array element 0 to 5   

Set a = createobject ("wscript.shell")
For i=0 to 5 step 1
a.run "http://yahoo.com"
wscript.sleep (5000)
a.sendkeys uname(i)
a.sendkeys chr (9)
wscript.sleep (2000)
a.sendkeys pwd(i)
a.sendkeys "{Enter}"
call msgbox ("Finished")
Next
wscript.quit

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to launch multiple different URL on a page with auto bot login using .VBS?

From Dev

How to create multiple App using one project

From Dev

How to create multiple dialogs in bot using MS bot framework so that bot remembers which dialog is in progress

From Dev

Open multiple .vbs one by one

From Dev

Drupal 7: How to create one node page for multiple content types?

From Dev

How to save vbs in batch file one command in multiple lines

From Dev

How to create a table using multiple span in one div using CSS

From Dev

How to create a table using multiple span in one div using CSS

From Dev

How to display multiple signatures in one page using jSignature.js?

From Dev

How to create multiple highchart and print in HTML page by using for loop?

From Dev

How to create one bar plots using multiple columns and argument “split”

From Dev

How to create multiple tables using one sql query

From Dev

how to create multiple databases in one single RDS using cloudformation?

From Dev

Create Folders and Subfolders using VBS

From Dev

How to submit multiple forms in one page using POST without refreshing page in Express JS

From Dev

How to submit multiple forms in one page using POST without refreshing page in Express JS

From Dev

Create Internet Explorer page shortcut with VBS

From Dev

Django create and edit page using one template

From Dev

How to create one log file per session?

From Dev

How can I create an If statement with multiple conditions (not: multiple statements nested) in VBS?

From Dev

Create Multiple chat control in one website Bot Framework

From Dev

Multiple plots on one page using ggplot

From Dev

Using multiple modal dialogs in one page

From Dev

Using one script for multiple forms on a single page

From Dev

Using multiple page.open in one script

From Dev

Jquery - Multiple slideshows on one page using radios

From Dev

Laravel 4 - Using multiple paginators on one page

From Dev

Plotting multiple graphs in one page using loop

From Dev

Using multiple page objects in one Geb test

Related Related

  1. 1

    How to launch multiple different URL on a page with auto bot login using .VBS?

  2. 2

    How to create multiple App using one project

  3. 3

    How to create multiple dialogs in bot using MS bot framework so that bot remembers which dialog is in progress

  4. 4

    Open multiple .vbs one by one

  5. 5

    Drupal 7: How to create one node page for multiple content types?

  6. 6

    How to save vbs in batch file one command in multiple lines

  7. 7

    How to create a table using multiple span in one div using CSS

  8. 8

    How to create a table using multiple span in one div using CSS

  9. 9

    How to display multiple signatures in one page using jSignature.js?

  10. 10

    How to create multiple highchart and print in HTML page by using for loop?

  11. 11

    How to create one bar plots using multiple columns and argument “split”

  12. 12

    How to create multiple tables using one sql query

  13. 13

    how to create multiple databases in one single RDS using cloudformation?

  14. 14

    Create Folders and Subfolders using VBS

  15. 15

    How to submit multiple forms in one page using POST without refreshing page in Express JS

  16. 16

    How to submit multiple forms in one page using POST without refreshing page in Express JS

  17. 17

    Create Internet Explorer page shortcut with VBS

  18. 18

    Django create and edit page using one template

  19. 19

    How to create one log file per session?

  20. 20

    How can I create an If statement with multiple conditions (not: multiple statements nested) in VBS?

  21. 21

    Create Multiple chat control in one website Bot Framework

  22. 22

    Multiple plots on one page using ggplot

  23. 23

    Using multiple modal dialogs in one page

  24. 24

    Using one script for multiple forms on a single page

  25. 25

    Using multiple page.open in one script

  26. 26

    Jquery - Multiple slideshows on one page using radios

  27. 27

    Laravel 4 - Using multiple paginators on one page

  28. 28

    Plotting multiple graphs in one page using loop

  29. 29

    Using multiple page objects in one Geb test

HotTag

Archive