Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name     neptun 12.13. mm
  3. // @version  1
  4. // @grant    none
  5. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js
  6. // ==/UserScript==
  7.  
  8. counterElement = $('#function_table_body tbody.scrollablebody tr:nth-child(1) td:nth-child(7)');
  9. numOfApplicants = parseInt(counterElement.text().split('/')[0]);
  10. colorOfExam = counterElement.css('color');
  11. colorOfNotApplied = "rgb(82, 86, 89)";
  12.  
  13. if(colorOfExam === colorOfNotApplied) {
  14.     console.log('trying to apply to 12.13');
  15.     if(numOfApplicants !== 90) {
  16.         $('#function_table_body tbody.scrollablebody tr:nth-child(1) td:nth-child(14)').click();
  17.         $('.contextdiv tr:nth-child(3) td').click();
  18.         console.log('Succesfully applied to 12.13!');
  19.     }
  20.     else{
  21.         console.log('12.13 is FULL');
  22.     }
  23. }
  24. else {
  25.     console.log('already applied to 12.13');
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement