Jump to content
UBot Underground

Vladislav

Fellow UBotter
  • Content Count

    25
  • Joined

  • Last visited

Posts posted by Vladislav

  1. Guys, anyone can help me with Soundcloud login ? There is some protection which does not permit me to proceed when I submit the form with ubot+exbrowser, but when i do it on hand on exbrowser there is no such issue. Problem is that when i hit "submit" after filling username/password, than instead of being logged in, I am forwarded to "Log in" form again.
    Here is the code:

    define SoundCloud Login {
        purpose("Loging to SoundCloud...")
        plugin command("ExBrowser.dll", "ExBrowser Navigate", "https://soundcloud.com/signin")
        plugin command("ExBrowser.dll", "ExBrowser Wait For Dom Ready", 10)
        plugin command("ExBrowser.dll", "ExBrowser Click", "x://*[@name=\"username\"]")
        plugin command("ExBrowser.dll", "ExBrowser Type Text (Human Delay)", "x://*[@name=\"username\"]", #sounduser, 100, 250)
        plugin command("ExBrowser.dll", "ExBrowser Click", "x://button[text()=\"Continue\"]")
        plugin command("ExBrowser.dll", "ExBrowser Click", "x://*[@name=\"password\"]")
        plugin command("ExBrowser.dll", "ExBrowser Type Text (Human Delay)", "x://*[@name=\"password\"]", #soundpass, 100, 250)
        wait(1)
        plugin command("ExBrowser.dll", "ExBrowser Double Click", "x://button[text()=\"Sign in\"]")
        wait(2)
        plugin command("ExBrowser.dll", "ExBrowser Click", "x://button[text()=\"Continue\"]")
        plugin command("ExBrowser.dll", "ExBrowser Click", "x://button[text()=\"Sign in\"]")
        wait(3)
        plugin command("ExBrowser.dll", "ExBrowser Wait For Dom Ready", 15)
    }
    plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", "")
    SoundCloud Login()
    

    Change #sounduser and #soundpass with own :)

    If at least can give me a tip what i need to look for?

  2. Thanks for fast reply Pash, i have asked my clients to download C++ redistributable and test, after i receive their replies will update the thread. In general i doubt this can be the issue as 1 one of them was able to run the bot, but after restart it never worked for him again.

     

    Edit: C++ redistributable install did not solved the issue :(

     

    Anyone has experienced such problems in the past ?

  3. From some time i am trying to dig deep into ubot development and have managed to make few very simple bots. The problem i am facing is that after sending the .exe file to my clients, some of them experience the following issue:

    After they run the bot, they see it on the Tasks Manager List but not the bot showing on the desktop.

    The very strange thing is that some of them manage to run the bot first time, but after closing it, restarting PC, they get same error - bot shown in Task manager but not visible on desktop.

    The bots i am currently building are ultra simple - 5 lines of code and nothing advanced..

    I told this customers to install latest .NET 4.6.1 but it does not change anything on their side.

     

    Please note i am not using the build in installer or something advanced - just the basic "Compile to Exe" when compiling.

    The issue happens with both bots versions - 1 using "ex browser plugin" and the other is using the buildin browser (i have tested on all browser versions).

    I am using Ubot latest version, Dev edition, win7, 4GB RAM

     

    Can someone please help me resolve this issue? i tried researching with Google and here on forum before posting the thread..

     

     

  4. Hi great ubot community!

     

    Can someone point me to some tutorial or explain with simple words how one can disable or hide UI HTML button after click ?

     

    In a bot i am currently building i have "Start" button build via  ui html command, i want after clicking it, the button to become disabled/hidden or both.

     

    Can someone please help me with this issue ?

  5. Hi guys, i am trying to make a bot which will connect to my website , but i want to block certain pages to not be accessible when browsing the website via the ubot interface.

    For example i want  cafegourme.com/4-paketirano-kafe to can be opened but if anyone click on Contact us link (cafegourme.com/content/6-kontakti) not to be taken to the actual page, preferably to stay on the same page and receive error "action not permitted" ;

    I was thinking a lot about this, searched in here and in Google but nothing found..

    I would appreciate any suggestions.

×
×
  • Create New...