Jump to content
UBot Underground

Any Idea About Recheck Filled Text Fields?


Recommended Posts

In some of my projects, first text field filling action doesn't work correctly every time, I don't know what caused it, just first text field do. So I usually don't put text field filling action first or just use change attribute 3 times instead.

 

I tried a while loop to recheck text field value is nothing then run text field filling action. Yes, It's always nothing :(

 

Any idea about recheck filled text fields? 

 

 

 

Link to post
Share on other sites

try click text field before type text or change attribute

 

sample

navigate("http://support.ubotstudio.com/","Wait")
wait for browser event("Everything Loaded","")
wait(1)
click(<name="searchquery">,"Left Click","No")
wait(0.1)
loop(10) {
    if($comparison($scrape attribute(<name="searchquery">,"value"),"= Equals","")) {
        then {
            change attribute(<name="searchquery">,"value","error")
        }
        else {
        }
    }
}
click(<class="searchbutton">,"Left Click","No")

this loop check 10 time

loop(10) {
    if($comparison($scrape attribute(<name="searchquery">,"value"),"= Equals","")) {
        then {
            change attribute(<name="searchquery">,"value","error")
        }
        else {
        }
    }
}
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...