-
Content Count
113 -
Joined
-
Last visited
-
Days Won
9
Everything posted by Varo
-
show your code, it will easier to analyze.
-
Ubot 6.3.9 is unstable at the moment, you can downgrade to version 5.9.55.
-
Can't "type text" login credential at twitttter... Help please
Varo replied to myubo's topic in General Discussion
Ubot built in browser is pretty old. It keep crashing on twitter. -
add your value (0.22) to the list, sort the list, find index position value from list. set(#target,0.22,"Global") clear list(%source) add list to list(%source,$list from text("0.38 0.33 0.30 0.25 0.20 0.17 0.12"," "),"Delete","Global") add item to list(%source,#target,"Delete","Global") clear list(%sorted) add list to list(%sorted,$list from text($sort list(%source,"Ascending")," "),"Delete","Global") set(#position,0,"Global") loop while($comparison(#target,"!= Does not equal",$list item(%sorted,#position))) { increment(#position) } alert("value under target price : {$list item(%sorted
-
Can't "type text" login credential at twitttter... Help please
Varo replied to myubo's topic in General Discussion
Try using exbrowser -
I need a way to restart compiled ubot if certain values are meet
Varo replied to daddycaddy's topic in General Discussion
Using pash Advanced ubot still worked, i just tried it. -
Scrape Question. I'm trying to learn. (I'M A NOOB)
Varo replied to MethodikalMe's topic in General Discussion
You should use add list to list not add item to list. %businessnames already using add list to list, but the other lists are still using add item to list. -
I've tried on exbrowser and external browser ubot 6, both worked.
- 3 replies
-
- browser embed
- conditional logic
-
(and 2 more)
Tagged with:
-
Have you tried using exbrowser plugin or external browser on ubot 6 ?
- 3 replies
-
- browser embed
- conditional logic
-
(and 2 more)
Tagged with:
-
No problem cjacobs, glad to help.
-
when you run the bot, close the csv file.
-
I've tried it too, and its worked. Remember that your desired keywords is case sensitive. Try use Owner, not owner.
-
Your if condition is wrong. Try this : clear table(&data) ui open file("Load CSV",#data) create table from file(#data,&data) ui drop down("Column to Check","0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26",#columnToCheck) ui block text("Desired Keywords",#desiredKeywords) set(#row,1,"Global") loop(5) { if($contains($table cell(&data,#row,#columnToCheck),#desiredKeywords)) { then { alert("Found") } else { alert("Not Found") } } increment(#row) }
-
Its not direct link download, you must through login process to get cookie, and then download the file. send POST request to : and then you can download the file
-
i suggest to clear all ubot installation and reinstall, Make sure Net Framework and Microsoft Visual C++ installed correctly. And you need fast internet connection on first launch ubot.
-
check this video from Seth https://www.youtube.com/watch?v=KREUMpFYfCY
-
i use this site and worked https://www.whatismybrowser.com/detect/what-http-headers-is-my-browser-sending i tried _https://whatismyreferer.com/ not working. edit: try use this : set header("Referer","https://www.dogs.com") navigate("https://whatismyreferer.com/","Wait") i just tried it and it worked
-
plugin command("Bigtable.dll", "large List from text", "test", $scrape attribute(<tagname="a">,"href"), " ", "replace") alert($plugin function("Bigtable.dll", "Large list return", "test"))
-
Not Able To Paste Ubotcode Back Into Ubot (Bug?)
Varo replied to unibotsi's topic in General Discussion
i'd tried your updated code, and its work fine. Copy paste on node view and code view, both work fine. -
Not Able To Paste Ubotcode Back Into Ubot (Bug?)
Varo replied to unibotsi's topic in General Discussion
Your first set command is wrong. Use this. set(#LoginStatus,"Logging in","Global") -
Hi, How do we get password value from passwordBox in XAML UI plugin ? TextBox are working fine, but passwordBox not work.