This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"soz": "Aba altında er yatar.", | |
"sahibi": "Atasözü" | |
}, | |
{ | |
"soz": "Abanın kadri yağmurda bilinir.", | |
"sahibi": "Atasözü" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"isim": "ABDULLAH GÜL ÜNİVERSİTESİ", | |
"tur": "Devlet", | |
"sehir": "Kayseri", | |
"web_sitesi": "http://www.agu.edu.tr", | |
"adres": "Barbaros Mahallesi Sümer Kampüsü Kocasinan-KAYSERİ", | |
"lisans": true, | |
"lisansKod": "1065", | |
"onlisans": false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"bolumler": [ | |
"Abaza Dili ve Edebiyatı", | |
"Acil Durum ve Afet Yönetimi", | |
"Acil Yardım ve Afet Yönetimi", | |
"Adli Bilimler", | |
"Adli Bilişim Mühendisliği", | |
"Aile ve Tüketici Bilimleri", | |
"Aktüerya Bilimleri", | |
"Alman Dili ve Edebiyatı", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var buttons = document.querySelectorAll(".btn.btn-sm.btn-success.makeclaim"); | |
function clickButtonsSequentially(index) { | |
if (index < buttons.length) { | |
buttons[index].click(); | |
setTimeout(function() { | |
clickButtonsSequentially(index + 1); | |
}, 1000); // 1s delay | |
} | |
} |