Jump to content
UBot Underground

[Sell] - Ubot Comminication Plugin - Browser Control (Pro) Use Chrome / Ff Etc - Run Code On / Control External Bots, Web Server Control (Pro) + More


Recommended Posts

Is there a way to detect if a CBrowser window has been closed ... either by the user or some other reason?

Edited by Pete_UK
Link to post
Share on other sites
  • Replies 440
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

>>Quick Update<<   A Team of 3 advanced Ubot Developers have taken over the project. We purchased the source code and full rights to it. We are now analyzing the source code and looking t

The first 5 tutorial videos are available (FREE)   http://www.bot-factory.com/downloads/communication-plugin-tutorials I cover a lot of the basics first. But we will move into more complex things as w

Version 2.9.7.2 Fixed: HTTP proxy authentication with Chrome   Update is now available on JVZOO It was allot of work to release this update and also would like to thank everyone for there patience an

Posted Images

Hello together,

thanks for this great Plugin. Can someone please help me to fill this Button which loads up an Profile Picture on this URL : http://www.online-artikel.de/register.php

<input type="button" onclick="window.open(href='crop/upload2.php','',''); return false;" value="Profil-Bild hochladen" class="btn">

Is that possible with Communication Plugin?

Thanks

Link to post
Share on other sites

Hello together,

thanks for this great Plugin. Can someone please help me to fill this Button which loads up an Profile Picture on this URL : http://www.online-artikel.de/register.php

<input type="button" onclick="window.open(href='crop/upload2.php','',''); return false;" value="Profil-Bild hochladen" class="btn">

Is that possible with Communication Plugin?

Thanks

Sure, via a XPATH selector:

 

input[@value="Profil-Bild hochladen"]

 

 

plugin command("Communication.dll""CBrowser Container""Chrome""""") {

    plugin command("Communication.dll""CBrowser Navigate""http://www.online-artikel.de/register.php")

    plugin command("Communication.dll""CBrowser Wait For Dom Ready", 30)

    plugin command("Communication.dll""CBrowser Click")

    alert("x")

}

 

Dan

Link to post
Share on other sites

hello,

how can i use $CBrowser Set User Agent

also can i use this command while using chrome or firefox as CBrowser container?

 

i have another question, while using firefox or chrome container and if the action following a click will lead to an new browser opening, it will still be chrome or firefox in the same page or how it will react?

 

thank you

i already purchased the pro version, i just want to understand how CBrowser works

Link to post
Share on other sites

just purchased and sent in a support ticket.

 

Cant seem to run the licenser to start using the plugin.  Await your reponse.

-----------------------------

 

Fixed by opening regedit, searched in all areas for the licenser

removed registry entry, rebooted, and re-registered and is working now.  Disregard.

Link to post
Share on other sites

Hello, i'm trying to use 

 

plugin command("Communication.dll""CBrowser Set Cookie""cookie1""234234")

comment("Navigates to url")
plugin command("Communication.dll""CBrowser Navigate"#url)
plugin command("Communication.dll""CBrowser Wait For Dom Ready", 30)

 

but for some reason its not setting the cookies

any idea why its not working? i'm using Firefox as CBrowser

Thanks

Link to post
Share on other sites

Hello,

 

This is happening to me too :) Please help me. My browser version is: 37.0.1

 

Thanks!

 

Hello, i'm trying to use 

 

plugin command("Communication.dll""CBrowser Set Cookie""cookie1""234234")

comment("Navigates to url")
plugin command("Communication.dll""CBrowser Navigate"#url)
plugin command("Communication.dll""CBrowser Wait For Dom Ready", 30)

 

but for some reason its not setting the cookies

any idea why its not working? i'm using Firefox as CBrowser

Thanks

Link to post
Share on other sites

Try this

 

plugin command("Communication.dll", "CBrowser Navigate", "navhere")
plugin command("Communication.dll""CBrowser Set Cookie""cookie1""234234")

plugin command("Communication.dll", "CBrowser Navigate", "navhere")
 

Link to post
Share on other sites

Feature Request : Get Process ID for a launched CBrowser. Could then use this to monitor if the CBrowser session is still live.

 

Do you notice that even chrome from cbrowser has closed but it stays on task manager and increases the cpu usage?

 

I had this situation

 

Any solution ?

Link to post
Share on other sites

for some reason i cannot use Click on firefox

works on chrome BUT chrome its slow compared with firefox

 

plugin command("Communication.dll""CBrowser Click""<id=\"pos_2\">")

 

any ideas? 

thanks 

 

i tried on lastest firefox 32 and 28

both has same issue

the mouse goes over the picture/banner but it doesn't initiate the click

thanks

Link to post
Share on other sites

It's been a while since I have seen Diskwizz post here or respond to anything about updates.

 

Is he ok?

 

He's ok. But as far as I know, Jane is in charge of the plugin right now.

 

Dan

Link to post
Share on other sites

Hello,

how is it possible to use randomly one of the Browsers for each run in an Container?

Thanks for your Help!

Pete

create a variable with a random number between 1 - 3

 

if number is 1 then you make a container for chrome, if 2 mozilla, if 3 phantom

Link to post
Share on other sites

plugin command("Communication.dll", "CBrowser Save Screenshot Element", "<id=\"confidentcaptcha_shield\">", #temp image)
 

As example is not saving the element, but rather its grabbing the size and saving a screenshot of the top left most corner instead.

Any known work around or fix.  Kinda stuck at the moment without a fix.

 

Full Code

    plugin command("Communication.dll", "CBrowser Container", "Firefox", "", "") {
    plugin command("Communication.dll", "CBrowser Navigate", "http://goo.gl/lZSMCK")
    plugin command("Communication.dll", "CBrowser Wait For Dom Ready", 20)
    wait(1.5)
    plugin command("Communication.dll", "CBrowser Click", "<id=\"confidentcaptcha_inline_grid_message\">")
    plugin command("Communication.dll", "CBrowser Wait For Dom Ready", 20)
    wait(1)

        set(#temp image, "{$special folder("Application")}\\{$random text(35)}.jpg", "Local")
        plugin command("Communication.dll", "CBrowser Save Screenshot Element", "<id=\"confidentcaptcha_shield\">", #temp image)
        stop script

 

Link to post
Share on other sites

I would just use a Spin function.

{Firefox|Chrome|PhantomJS}

Inside of $spin

 

 

Yeah nice one TJ, but i said that way so the bot can show the user which browser its using

Link to post
Share on other sites

plugin command("Communication.dll", "CBrowser Save Screenshot Element", "<id=\"confidentcaptcha_shield\">", #temp image)

 

As example is not saving the element, but rather its grabbing the size and saving a screenshot of the top left most corner instead.

Any known work around or fix.  Kinda stuck at the moment without a fix.

 

Full Code

    plugin command("Communication.dll", "CBrowser Container", "Firefox", "", "") {

    plugin command("Communication.dll", "CBrowser Navigate", "http://goo.gl/lZSMCK")

    plugin command("Communication.dll", "CBrowser Wait For Dom Ready", 20)

    wait(1.5)

    plugin command("Communication.dll", "CBrowser Click", "<id=\"confidentcaptcha_inline_grid_message\">")

    plugin command("Communication.dll", "CBrowser Wait For Dom Ready", 20)

    wait(1)

 

        set(#temp image, "{$special folder("Application")}\\{$random text(35)}.jpg", "Local")

        plugin command("Communication.dll", "CBrowser Save Screenshot Element", "<id=\"confidentcaptcha_shield\">", #temp image)

        stop script

 

 

Any news on the above for elements?

 

Also found that

the options setting doesnt seem to be working as the print screen for Chrome when using options as

--disable-print-preview

 

The preview pane never loads and freezes up the browser from continuing (manual interaction with a pause in  place for it)  but should disable the preview pane and its still moving for some reason.

 

Can test and see what im talking about just navigate to any site with Chrome selected as browser.

Pause and click to print.  go through the print steps, or print to (save) as pdf

 

and will see it remains locked up and never loads the preview screen

Link to post
Share on other sites

Looks very interesting plugin... this is on my wish list...  :)

 

I assume I could control server based bots from a website? or my phone via website!

 

Also liking the sound of latest update allowing control of other browsers  B)

Link to post
Share on other sites
  • 2 weeks later...

Responsible for this Plugin is:

Bliss (Ubot Username)
blissuk (Skype Username)

 

Support Site:

http://www.client-area.biz/devsite/submitticket.php

 

Jane is the project manager for this plugin project. But development was outsourced. 

 

 

But I'm not sure if there are any updates planned at the moment...

 

Dan

Link to post
Share on other sites

Thanks Dan,Submit a ticket,waiting for the response.

Responsible for this Plugin is:

Bliss (Ubot Username)
blissuk (Skype Username)

 

Support Site:

http://www.client-area.biz/devsite/submitticket.php

 

Jane is the project manager for this plugin project. But development was outsourced. 

 

 

But I'm not sure if there are any updates planned at the moment...

 

Dan

Link to post
Share on other sites
Guest
This topic is now closed to further replies.

×
×
  • Create New...