Jump to content
UBot Underground

Added Chrome Driver Functions To My Plugin


Recommended Posts

Hey

 

Its pretty basic, I designed for my own use, will keep you posted if I add anything else or fix the things that do not work

 

https://1drv.ms/u/s!AgO9AudYbciJheoHbEYsVRJrOkmn0w

 

You will need to download the chromedriver.exe from 

https://chromedriver.storage.googleapis.com/index.html

 

and store it in C:\Program Files (x86)\UBot Studio 5

plugin command("DeliterCSS.dll", "In New Browser Chrome", "") {
    plugin command("DeliterCSS.dll", "Navigate Chrome", "http://www.google.com/")
    plugin command("DeliterCSS.dll", "Chrome Wait For Element", "#lst-ib", 10)
    plugin command("DeliterCSS.dll", "Type Chrome", "#lst-ib", "Hello From Deliter!")
    wait(20)
}

  • Like 5
Link to post
Share on other sites

yeah, though it doesn't have even close to the features that plugin offers, I just needed to use a chrome browser for a project, and made the commands that I would need to accomplish that

 

Run Javascript

Type Text

Switch Frame

Click

Wait For Element

I new Browser

Navigate

 

Eval

Page Source

  • Like 1
Link to post
Share on other sites

heres another example

plugin command("DeliterCSS.dll", "In New Browser Chrome", "") {
    plugin command("DeliterCSS.dll", "Navigate Chrome", "http://www.google.com/")
    plugin command("DeliterCSS.dll", "Chrome Wait For Element", "#lst-ib", 10)
    plugin command("DeliterCSS.dll", "Type Chrome", "#lst-ib", "ubot studio")
    plugin command("DeliterCSS.dll", "Click Chrome", "[value=\"Search\"]")
    plugin command("DeliterCSS.dll", "Chrome Wait For Element", "#foot", 10)
    alert($plugin function("DeliterCSS.dll", "Deliter CSS Selector", $plugin function("DeliterCSS.dll", "Chrome Page Source"), ".r a", "TextContent"))
    wait(20)
}

Link to post
Share on other sites

Sorry  Im not looking to make a clone or real alternative to Exbrowser, I probably will not make any more adds to this, I just needed it

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