Jump to content
UBot Underground

[Solved] filling out a form


Recommended Posts

I have watched through this video a few times

 

 

I do not understand how he is going down the list, nor do I know how it could be done in v4.

 

A few searches didnt produce results for me. Anyone willing to help out the noob?

Link to post
Share on other sites

I think that I asked the wrong question due to my inexperience. I need to use a table, not a list.

 

I need to step through a table, not a list. I am filling out a form, using multiple columns from a table. then I want to repeat this, with a different row from the same table. How do I move from row to row in a table?

Link to post
Share on other sites

Complete step by step example..

 

Video:

 

Code example:

clear table(&cell example)
create table from file("C:\\Users\\Tj Development\\Desktop\\table example.csv", &cell example)
set(#temp row, 0, "Global")
loop($table total rows(&cell example)) {
   change attribute($element offset(<email field>, 0), "value", $table cell(&cell example, #temp row, 0))
   wait(2)
   increment(#temp row)
}

Link to post
Share on other sites

Do the commands need to be in a loop to step though them? I have been trying to do some manual stuff and step through the list with each time I hit run and have not had any success.

Link to post
Share on other sites

The step button gets clicked for each "step" or command in your script...if you have three commands, clicking it once will execute the first command, clicking again the second, etc.

 

John

Link to post
Share on other sites

The step button gets clicked for each "step" or command in your script...if you have three commands, clicking it once will execute the first command, clicking again the second, etc.

 

John

 

 

I didnt proof my question... the question is

 

Do the commands to increment a list need to be in a loop to step though them?

Link to post
Share on other sites

You should be able to step one iteration of the loop at a time...if the increment command is in the loop it will function as normal and increment on each iteration.

 

John

 

PS, so the short answer is yes to your question

Link to post
Share on other sites

You should be able to step one iteration of the loop at a time...if the increment command is in the loop it will function as normal and increment on each iteration.

 

John

 

PS, so the short answer is yes to your question

 

Ok great! Now I just need to figure out why my bot isnt working. Thanks!

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...