Jump to content
UBot Underground

Recommended Posts

Is there a way to create an if statement that will basically follow these instructions:

IF the UI box has been completed (or filled out), THEN do xyz....

 

It's the "has been filled out" part that i'm having an issue with. I currently have this:

if($contains(#uk_amz_user,"")) {
    then {
        UKAmazonLogin()
        UKRunReports()
    }
    else {
        click($element offset(<login link>,0),"Left Click","No")
    }
}

Thanks again for all the help!

Link to post
Share on other sites

try

if($comparison(#uk_amz_user,"=","")) {
    then {
        UKAmazonLogin()
        UKRunReports()
    }
    else {
        click($element offset(<login link>,0),"Left Click","No")
    }
}

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