Jump to content
UBot Underground

UBotGoRound

Members
  • Content Count

    8
  • Joined

  • Last visited

Posts posted by UBotGoRound

  1.  

    I'm creating a bot for a client that will run via Task Scheduler on a server so I don't want to use any ui input boxes. 

     

    I told him the login credentials could be stored in a .txt file in the same folder as the bot, or they could be coded into the bot. 

     

    He is concerned about the security of both these suggestions. 

     

    This is the only way I've ever done it. Is there a more secure way to store and automatically load login details that only he has access to? 

     

    I want to use the internal ubot browser and not exbrowser because the bots I've previously made with exbrowser stop working when the browser needs updating, which is really frustrating. 

  2. I'm trying to add a pin to a board from a URL. 

     

    It choose the image, types the description then clicks on the board to save it to, but just as the board name is clicked, the typed description disappears. 

     

    Any idea why this is happening? 

    
    define Pin from URL {
        navigate("https://uk.pinterest.com/BOARD","Wait")
        wait($rand(7,11))
        click(<innertext="Save Pin
    ">,"Left Click","No")
        wait(2)
        click(<class="addPinModalUrlButton">,"Left Click","No")
        wait(2)
    	type text(<placeholder="https://...">,#nextItem,"Standard")
        wait(2)
        click(<outerhtml="<span class=\"buttonText\">Next</span>">,"Left Click","No")
        wait(5)
        click($element offset(<class="hoverMask">,$rand(1,5)),"Left Click","No")
        wait(2)
        if($exists(<placeholder="Tell us about this Pin...">)) {
            then {
                type text(<placeholder="Tell us about this Pin...">,"{#KWdesc} {#kw}","Standard")
            }
            else {
            }
        }
        if($exists(<outerhtml=w"<p class=\"*\" role=\"textbox\">Tell us about this Pin...</p>">)) {
            then {
                click(<outerhtml=w"<p class=\"*\" role=\"textbox\">Tell us about this Pin...</p>">,"Left Click","No")
                wait(0.5)
                type text(<outerhtml=w"<p class=\"*\" role=\"textbox\">Tell us about this Pin...</p>">,"{#KWdesc}  {#kw}  
    
    ","Standard")
            }
            else {
            }
        }
        wait(2)
        click(<innertext="{#BoardName}
    ">,"Left Click","No")
        wait($rand(37,61))
    }
    
    
    
    
×
×
  • Create New...