05/01 - Fussy Friday

Status
Not open for further replies.

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Respond to 10 open ended scenarios (20200501_PN_B) | Accept
Requester: Acme Data Collection [A3A1AJ4RPLTOLY] Contact
TV: [Hrly=$25.03] [Pay=Generous] [Approval=1-3 days] [Comm=Acceptable] [Rej=0] [Blk=0]
TO: [Pay=3.87] [Fast=4.20] [Comm=3.05] [Fair=4.75] [Reviews=134] [ToS=5]
TO2: No Reviews
Reward: 0.75
Duration: 1:00:00
Available: 0
Description: Please answer a few demographic questions, then record yourself saying short phrases.
Qualifications: Not available from queue exports.
 

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Survey on feelings and information processing about Coronavirus and social distancing | Accept
Requester: Sociotech Utk [A21V45MZP6RGJK] Contact
TV: [Hrly=$10.01] [Pay=Fair] [Approval=Unrated] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=4.20] [Fast=4.75] [Comm=5.00] [Fair=5.00] [Reviews=7] [ToS=0]
TO2: No Reviews
Reward: 1.00
Duration: 1:00:00
Available: 0
Description: Another COVID-19 study?! A 15-minute survey on how you feel about the COVID-19 situation and responses to messages of social distancing. No sensitive or intrusive questions. No right or wrong answers. IMPORTANT: one person can only take this survey once!
Qualifications: Not available from queue exports.
 

HelloHello

Well-Known Member
Joined
Mar 3, 2018
Messages
8,851
Reaction score
19,902
Points
938
Gender
Female
I haven't gotten any hits for over 30 mins.... seems like a good time to have a W.R. and call it a night. Good luck everyone!
Me too, I was just penning my swan song when you popped in with yours. I want DINNER. I shopped online today during the lulls and didn't nearly have the fun that you did yesterday!
 

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Short survey on decision making(~ 3 minutes) | Accept
Requester: Meng Li [AEQ4XMXUEWVRT] Contact
TV: [Hrly=$18.23] [Pay=Generous] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=4.14] [Fast=4.50] [Comm=5.00] [Fair=5.00] [Reviews=9] [ToS=0]
TO2: No Reviews
Reward: 0.40
Duration: 30:00
Available: 0
Description: 3 minute short opinion survey on decision question
Qualifications: Not available from queue exports.
 

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Short survey about products evaluations | Accept
Requester: Myungjin Chung [A3L0O439X7GUXB] Contact
TV: [Hrly=$11.57] [Pay=Fair] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=3.00] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=3] [ToS=0]
TO2: No Reviews
Reward: 0.50
Duration: 30:00
Available: 0
Description: Give us your opinion about the products
Qualifications: Not available from queue exports.
 

Blakkat

Well-Known Member
Contributor
Joined
May 7, 2018
Messages
20,229
Reaction score
12,480
Points
1,238
Location
Florida
Gender
Female
Me too, I was just penning my swan song when you popped in with yours. I want DINNER. I shopped online today during the lulls and didn't nearly have the fun that you did yesterday!
LOL, sorry I beat you to the swan song, but I bet your dinner will be better than mine (a hot dog with, unfortunately, no chili and cheese). Tomorrow is my day to shop online, because I need so many real life things that are not available with just essential businesses open.
 
Last edited:
  • Like
Reactions: HelloHello

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
if its toys, i don't see how there can be a script as the things needing answered change based on how you respond to the first item or two. it's just better to plan your answers after analyzing the pics and touch/touvh/touch/submit.
Maybe something like this...

Code:
// ==UserScript==
// @name         A9 Product .02
// @version      1.0
// @description  preclicks, resizing ,buttons, enter to submit
// @author       SarahAshlee90
// @include     /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant        none
// @require     https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==

var sanity = document.querySelectorAll('h4')[0];
if (sanity.innerHTML === "Image 1"){
    window.focus();

    const radios_and_checkboxes = document.querySelectorAll('[type="radio"]');

    function preclick (elements_to_click, ...numbers) {
        const radios_and_checkboxes_to_preclick = [];
        Array.prototype.slice.call(arguments).forEach(el => radios_and_checkboxes_to_preclick.push(el));
        radios_and_checkboxes_to_preclick.forEach(element => radios_and_checkboxes[element].click());
        console.log(`There are a total of ${radios_and_checkboxes.length} checkboxes/radio's on this page.  The requested preclicks are numbers ${radios_and_checkboxes_to_preclick}`);
    }
    preclick(0,2,4,6,8);

    window.addEventListener("keydown", function (event) {
        if(event.code === "NumpadEnter"){
            $('[id="submit"]').click();
        }
    });

    function button1_click (){
        for(var i = 0; i < radios_and_checkboxes.length; i++ ){
            radios_and_checkboxes[i].checked = false;
        }
        setTimeout(function(){
            radios_and_checkboxes[1].click();
            setTimeout(function(){
                 $('[id="submit"]').click();
            },250)
        },250);
    }

    function button2_click (){
        radios_and_checkboxes[3].click();
    }

    function button3_click (){
        radios_and_checkboxes[8].checked = false;
        setTimeout(function(){
            radios_and_checkboxes[5].click();
        },250);
    }

    function button4_click (){
        radios_and_checkboxes[8].checked = false;
        setTimeout(function(){
            radios_and_checkboxes[7].click();
        },250);
    }

    function button5_click (){
        radios_and_checkboxes[9].click();
        setTimeout(function(){
            $('[id="submit"]').click();
        },250);
    }

    function createButton(context, func, color, text) {
        var button = document.createElement("input");
        button.style.backgroundColor = color
        button.type = "button";
        button.value = text;
        button.onclick = func;
        context.appendChild(button);
    }

    const q_1 = document.getElementById("notsure").parentNode;
    const q_2 = radios_and_checkboxes[3].parentNode;
    const q_3 = radios_and_checkboxes[5].parentNode;
    const q_4 = radios_and_checkboxes[7].parentNode;
    const q_5 = radios_and_checkboxes[9].parentNode;
    const control = document.querySelectorAll('[id="main"]')[0];

    createButton(q_1, button1_click, "red", "Clear all answers then click No/Not Sure then click Submit");
    createButton(q_2, button2_click, "Chartreuse", "Different Angle");
    createButton(q_3, button3_click, "Chartreuse", "Clear Question 5 then click No");
    createButton(q_4, button4_click, "Chartreuse", "Clear Question 5 then click No");
    createButton(q_5, button5_click, "red", "Click No and Submit");
    createButton(q_2, button6_click, "green", "Toggle page resizing(on)");

    setTimeout(function() {
        windowH();
    },50);

    var retrievedObject = localStorage.getItem('page_resizing');
    console.log(retrievedObject);
    var option = "on"
    if (retrievedObject===null) {
        localStorage.setItem("page_resizing", option);
    } if(retrievedObject==="off"){
        option = "off";
        var but = document.querySelectorAll('[value="Toggle page resizing(on)"]')[0];
        but.style.backgroundColor="grey"
        but.value = "Toggle page resizing(off)";
    }

    function button6_click (){
        var but = document.querySelectorAll('[value="Toggle page resizing(on)"]')[0] || document.querySelectorAll('[value="Toggle page resizing(off)"]')[0];
        if(but.style.backgroundColor==="green"){
            but.style.backgroundColor="grey"
            option = "off";
            but.value = "Toggle page resizing(off)";
            localStorage.setItem("page_resizing", option);
        }else if (but.style.backgroundColor==="grey"){
            option = "on";
            but.style.backgroundColor="green";
            but.value = "Toggle page resizing(on)"
            localStorage.setItem("page_resizing", option);
        }
    }

    function windowH() {
        if (option === "on"){
            document.querySelectorAll('canvas')[0].style.maxHeight= "25vh";
            document.querySelectorAll('canvas')[1].style.maxHeight= "25vh";
            document.getElementById('table').style.maxHeight = "40vh";
        }
    }
}
T @theglock jan @jan rsmath @rsmath
 
Last edited:
  • Like
Reactions: TSolo315

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Comparison of platforms on process fit. | Accept
Requester: Korbinian [A11B98GO0YAESS] Contact
TV: [Hrly=$9.82] [Pay=Fair] [Approval=~24 hrs] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=1.00] [Fast=1.00] [Comm=1.00] [Fair=1.00] [Reviews=1] [ToS=0]
TO2: No Reviews
Reward: 1.00
Duration: 30:00
Available: 1
Description: Conduct a loan application with a chatbot or online form and answer questions based on the interaction.
Qualifications: Not available from queue exports.
 

afallstarxfall

Well-Known Member
Spoonfeeder
Social Butterfly
Very Versatile
Joined
Aug 9, 2019
Messages
8,755
Reaction score
4,350
Points
563
Location
California
Gender
Female
Title: Students’ Perspectives of Academic Incivility: Assessing the Nature of Academic Incivility | Accept
Requester: Laurie Campbell [A3DV3Q7HPHCFMI] Contact
TV: [Hrly=$10.00] [Pay=Fair] [Approval=1-3 days] [Comm=Unrated] [Rej=0] [Blk=0]
TO: No Reviews
TO2: No Reviews
Reward: 0.50
Duration: 1:00:00
Available: 1
Description: The purpose of this research is to examine students’ views regarding the nature of academic incivility in online, face-to-face, and hybrid undergraduate and graduate courses
Qualifications: Not available from queue exports.
 

rsmath

Hatch Green Chile
Joined
Jan 13, 2019
Messages
8,983
Reaction score
19,440
Points
938
Location
Desert Scrub
Gender
Male
Maybe something like this...
:shrug:

The a9s seem to be gone and looking at the script, I don't understand if it assumes the worst case scenario of questions or how it handles the various possible configurations.
 

SarahAshlee90

Well-Known Member
Crowd Pleaser
Joined
Mar 4, 2016
Messages
2,781
Reaction score
5,294
Points
963
Age
33
Gender
Female
:shrug:

The a9s seem to be gone and looking at the script, I don't understand if it assumes the worst case scenario of questions or how it handles the various possible configurations.
3RO2E92D0WB75U3BD1UXT1ZR15C4DK
A3HLF55H6JSTI0

They are there.
 
  • Like
Reactions: rsmath

rsmath

Hatch Green Chile
Joined
Jan 13, 2019
Messages
8,983
Reaction score
19,440
Points
938
Location
Desert Scrub
Gender
Male
3RO2E92D0WB75U3BD1UXT1ZR15C4DK
A3HLF55H6JSTI0

They are there.
that's the weirdest thing. AMT site "all hits" found nothing, even with the "HITs i'm qualified for" unchecked, but putting the task id into hit catcher catches one right away so i don'r know why my search failed.
 
Status
Not open for further replies.