heyo please help

landal
@landal
Posts made by landal
-
Remove Warnings
|-Remove Warnings-|
is there an option or feature I can use on Open Bullet to remove the function of receiving warnings for my proxy reload?
After several warnings buildup, the configuration I have running seemingly turns hits a CPM of 0.
thanks, landal
-
Multipart Posting Broken
Multipart posting is broken or I'm just dumb.
I've been working on a config for an undisclosed website that requires multipart posts to complete the task.In the video provided I paste the multipart data, I want to have posted. After switching to loliscript and back the information pasted has disappeared.
I'm confused
https://gyazo.com/e22a2168ab06536aedefb0cba96e4fb4REQUEST GET "https://www.surveymonkey.com/r/KWWHZY3" HEADER "User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko" HEADER "Pragma: no-cache" HEADER "Accept: */*" FUNCTION CurrentUnixTime -> VAR "START" PARSE "<SOURCE>" LR "<input type=\"hidden\" id=\"survey_data\" name=\"survey_data\" value=\"" "\" />" -> VAR "DATA" FUNCTION CurrentUnixTime -> VAR "END" FUNCTION Compute "<END> - <START>" -> VAR "TAKEN" REQUEST GET "https://www.surveymonkey.com/r/KWWHZY3" Multipart HEADER "User-Agent: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.83 Mobile Safari/537.36" HEADER "sec-fetch-user: ?1" HEADER "upgrade-insecure-requests: 1" HEADER "origin: https://www.surveymonkey.com" HEADER "referer: https://www.surveymonkey.com/r/KWWHZY3"
the multipart information I am failing to work with is
524254594: 3465967923 524255260: 3465970231 524255491: 3465971501 524260186: 3466001997 524260452: 3466003926 524260593: 3466004794 524260703: 3466005568 524261406: 3466009835 524261778[]: 3466012250 524261846: no survey_data: <DATA> response_quality_data: {"question_info":{"qid_524254594":{"number":1,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[2,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524255260":{"number":2,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524255491":{"number":3,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[1,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524260186":{"number":4,"type":"single_choice_vertical","option_count":2,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[2,1],"input_method":null,"is_hybrid":false},"qid_524260452":{"number":5,"type":"single_choice_vertical","option_count":4,"has_other":false,"other_selected":null,"relative_position":[[2,0]],"dimensions":[4,1],"input_method":null,"is_hybrid":false},"qid_524260593":{"number":6,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524260703":{"number":7,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524261406":{"number":8,"type":"single_choice_vertical","option_count":3,"has_other":false,"other_selected":null,"relative_position":[[0,0]],"dimensions":[3,1],"input_method":null,"is_hybrid":false},"qid_524261778":{"number":9,"type":"multiple_choice_vertical_two_col","option_count":5,"has_other":false,"other_selected":null,"relative_position":[[1,0]],"dimensions":[3,2],"input_method":null,"is_hybrid":false},"qid_524261846":{"number":10,"type":"open_ended","option_count":null,"has_other":false,"other_selected":null,"relative_position":null,"dimensions":null,"input_method":"text_typed","is_hybrid":false}},"start_time":<START>,"end_time":<END>,"time_spent":<TAKEN>,"previous_clicked":false,"has_backtracked":false,"bi_voice":{}} is_previous: false disable_survey_buttons_on_submit:
thanks, landal
-
Random Delay Amount
Random Delay Amount
hi, I've been trying to randomize my delay times on a selenium project I've been working on. I've been attempting to circumvent the automation detection, which incase activates a ReCaptcha or other sort of verification that is needed.
#DELAY FUNCTION Delay "3000 "
randint(2000, 7000),3000-7000I thought in order to circumvent the detection I could add randomized delays between each interval. Sadly I am unsure of how to do that. Is there a possibility to have a random delay amount? If so, how?
Thanks, Landal
-
RE: Selenium Scrolling Alternative
@meinname hi, I'm confused about what I should be doing with https://github.com/SeleniumHQ/selenium/blob/master/dotnet/src/webdriver/Keys.cs ?
Would I have to incorporate the file into OpenBullet or use the file to figure out what I should use for Browser Action, Send Keys? Would I want to do
BROWSERACTION SendKeys "<PAGEDOWN>"
-
RE: Selenium Scrolling Alternative
hi, thank you. Is there a way to make the PageDown key be held down? So I don't have to have the Browser Action spam the keypress?
-
Selenium Scrolling Alternative
Selenium Scrolling Alternative
I've been programming a Selenium Config recently. Within the config, I must scroll down on a page to load in more information for the source.
Sadly, I was unable to utilize the Scrolling Browser Action.
So I have been attempting to use the Browser Action Sendkeys and send the down arrow to the browser. But I'm unsure of what the down arrow key input would be.To sum it up is there any way to utilize the Scroll Browser Action or is it possible to send the down arrow key? If so how?
Thanks, Landal