Jump to content
UBot Underground

Recommended Posts

Hi guys, I find a roadblock on my new project.

 

What I'm looking for is:

a user can choose in the drop box to use "A" or "B".

then fill the box with a word.

 

if he choose A then the bot will go to website.com/example/WORD

if he choose B then the bot will go to website.com/WORD

 

how I can do it? :\

Link to post
Share on other sites

Here ya go...try this.

 

ui drop down("Choose""A,B"#a or b)
if($comparison(#a or b"=""A")) {
    then {
        alert("Is A and the input is  {$prompt("Enter Word")}")
    }
    else {
        set(#input$prompt("Please enter a keyword."), "Global")
        alert("Is B and the keyword is {#input}!!!")
    }
}

 

 

I think that is what you are asking.

 

CD

Link to post
Share on other sites

Another question:

 

I need to save all the images on the same page, actually there are 3 images and then move to the next page.

I used the function: Save Element Image without success. Each 3 images have the same root in the url...and I need to save them in a folder that is previously choosen by me though the UI.

 

can you help me for this too?

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...