A9 Data Validation - script edit.

Discussion in 'mTurk Scripts & Resources' started by SmokedKipper, Jun 12, 2018.

  1. SmokedKipper

    SmokedKipper Survey Slinger

    Messages:
    1,402
    Gender:
    Male
    Ratings:
    +2,207
    I was trying to do some of the A9's while i work on something else. I do have a script that someone posted almost a month back. It is working with this new batch but it picks something other then the most common radial to click.
    I tried looking at the script in tampermonkey but i cant seem to figure it out. I am trying to get it to select the first in the list. Sadly no matter how i change the script it picks the 4th option. Unless i break the whole thing.

    Thanks to GTR for the script it was a great deal of help a few weeks back. helped me get past the 10k mark.

    Code:
    // ==UserScript==
    // @name A9 Data Validation
    // @version .01
    // @description Amazon Requester Inc. - A9 Data Validation
    // @author GTR
    // @include *s3.amazonaws.com*
    // @require https://code.jquery.com/jquery-3.0.0-alpha1.min.js
    // ==/UserScript==
    $('input[value="None"]').click();
    $('input[value="FALSE"]').click();
    $('input[value="FRONT"]').click();
    $('input[value="YesUnsure"]').click();
    
    (function() {
        'use strict';
    
        // Your code here...
    })();
     
  2. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    Code:
    // ==UserScript==
    // @name A9 Data Validation part 2
    // @version .01
    // @description Amazon Requester Inc. - A9 Data Validation
    // @author GTR
    // @include *s3.amazonaws.com*
    // @require https://code.jquery.com/jquery-3.0.0-alpha1.min.js
    // ==/UserScript==
    $('input[value="MainSame"]').click();
    (function() {
        'use strict';
    
    })();
    try that
     
    • Today I Learned Today I Learned x 1
  3. lefty

    lefty Survey Slinger

    Messages:
    18,930
    Gender:
    Female
    Ratings:
    +49,005
    alternatively if you wanted to keep those other options, just add that line there with the rest of them

    Code:
    $('input[value="MainSame"]').click();
     
    • Today I Learned Today I Learned x 1
  4. SmokedKipper

    SmokedKipper Survey Slinger

    Messages:
    1,402
    Gender:
    Male
    Ratings:
    +2,207
    Oh wow, ty very much.
    I think i need to learn some about scripts.
    again many thanks :)
     
  5. bradko2001

    bradko2001 Active Turker

    Messages:
    128
    Gender:
    Male
    Ratings:
    +143
     
  6. bradko2001

    bradko2001 Active Turker

    Messages:
    128
    Gender:
    Male
    Ratings:
    +143
    I am new here how do I add this script or any other scripts of TamperMokey.
     
  7. Ornac

    Ornac Survey Slinger TurkerView Masters

    Messages:
    8,739
    Gender:
    Male
    Ratings:
    +11,092
    Click on the icon and select create new script. Then just copy and paste the script over the stuff that's already there. Then save it.
     
  8. bradko2001

    bradko2001 Active Turker

    Messages:
    128
    Gender:
    Male
    Ratings:
    +143