-
Content Count
1559 -
Joined
-
Last visited
-
Days Won
169
Code Docta (Nick C.) last won the day on November 4 2021
Code Docta (Nick C.) had the most liked content!
Community Reputation
637 ExcellentAbout Code Docta (Nick C.)
-
Rank
Member for Hire
- Birthday 10/12/2012
Contact Methods
-
Website URL
https://www.buymeacoffee.com/ubotdocta
-
Skype
codedocta.com
Profile Information
-
Gender
Male
-
Location
In a Python or UBot IDE codedocta.com
-
Interests
Making Python and UBot software hybrids and teaching others to do the same.
Need some software? Contact me on S k y p e
Want to donate? http://buymeacoffee.com/codedocta
System Specs
-
OS
Windows 10
-
Total Memory
More Than 9Gb
-
Framework
unsure
-
License
Developer Edition
-
mulcahy started following Code Docta (Nick C.)
-
Code Docta (Nick C.) changed their profile photo
-
I think ubot stop supporting windows 7 some time ago.
-
Run Python + Selenium With Ubot Studio?
Code Docta (Nick C.) replied to ponda199's topic in General Discussion
https://ubotdocta.com/category/python/ -
Exbrowser Twitter Upload Image Pop Up Window
Code Docta (Nick C.) replied to fastlinks's topic in General Discussion
ya, try the first one I know I did this with python selenium and it worked for me plugin command("ExBrowser.dll", "ExBrowser Change File Field", "", "") plugin command("ExBrowser.dll", "ExBrowser File Upload Dialog Window", "", "") if not try the second I pressed ctrl + e to get into ubots search box then typed file and scrolled through to see what would make most sense. -
Exbrowser Twitter Upload Image Pop Up Window
Code Docta (Nick C.) replied to fastlinks's topic in General Discussion
ya, there's a command for it something like ExB change file field -
Ubot Studio Interacting With A Thin Client?
Code Docta (Nick C.) replied to Gunfighter53's topic in General Discussion
Python's subprocess module or ubotdev.com plugin "advance shell" it has a $shell batch function that returns the output you can parse as well. His site has been down for some time now so it's not available there anymore. I can sen it to you some how.- 2 replies
-
- UBOT Plug in
- Ubot and thin client
- (and 1 more)
-
What's your use case for such a thing? Here's how to run a define from ui html panel https://www.youtube.com/watch?v=bkkRiQKX-fM I know you can run jquery in the browser window using run javascript command then use $eval if you need to return something. Never tried to do it in the ui html panel tho. Nick
-
http://network.ubotstudio.com/ubot_install_archive/ubot%20studio/v5.9.37/Setup.msi 5.9.55 https://s3-us-west-2.amazonaws.com/ubotsupportfiles/5.9.55+Setup.msi what level of ubot do you have? Dev, Pro?
-
I usually place all my UI commands at the end of my scripts. That way they're out of my way. You can have five loops in the same stat monitor, the stat monitor is not just for loops. You can use variables in there too. You can also have multiple stat monitors. It's just a debug tool and a way to give the user all sorts of information.
-
Different Browser Results In A Google Search
Code Docta (Nick C.) replied to Ed McDonough's topic in Scripting
What version of UBot are you using? Which browser are you using? Which user agent command are you using? "set user agent" command is for browser "29" and has a dropdown with old user agents in it. set header("User-Agent","your user agent") is for browser 49+ This will surely have an impact if you don't use them correctly. Regards, Nick- 4 replies
-
- AdWords
- Google Chrome
-
(and 1 more)
Tagged with:
-
Grammar Spelling Api Automatic
Code Docta (Nick C.) replied to ATuringtest's topic in General Discussion
https://www.grammarbot.io/quickstart -
How To Save Scrape Of Several Elements?
Code Docta (Nick C.) replied to SweTech's topic in General Discussion
Normalize the data define $phone { set(#F_pjhone,$plugin function("XpathPlugin.dll", "$Generic Xpath Parser", $document text, "//li", "InnerText", ""),"Global") if($comparison(#F_pjhone,"= Equals",$nothing)) { then { return("NA") } else { comment("returns user name if not blank") return(#F_phone) } } } define $user name { set(#F_user_name,$plugin function("XpathPlugin.dll", "$Generic Xpath Parser", $document text, "//li", "InnerText", ""),"Global") if($is blank(#F_user_name)) { then { -
How To Manage A Large List In 2020?
Code Docta (Nick C.) replied to loadsofthema's topic in General Discussion
Try using the function in a variable first then put the variable in large list command -
Ubot 6.1.1 Cookies Problem
Code Docta (Nick C.) replied to mikeshinobi's topic in General Discussion
more info here https://www.w3schools.com/js/js_cookies.asp