NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

var person = document.getElementsByClassName("address")[0];
var personData = person.getElementsByTagName("h3")[0].innerText.split(/[ ]+/);
var adr = person.getElementsByClassName("adr")[0].innerText;
adr = adr.substring(adr.indexOf(".") + 1);
var lines = adr.split(/[nr]+/);
personData.push(lines[0].substring(0, lines[0].lastIndexOf(" ")));
personData.push(lines[0].substring(lines[0].lastIndexOf(" ") + 1));
var line1 = lines[1].split(/[ ]+/);
personData.push(line1);
var phone = "";
var cc = "";

var fakeData = {
name: (personData[0]),
surname: (personData[1]),
};
if(document.URL.includes("cs-cz")){
fakeData.street = lines[0].substring(0,lines[0].indexOf(" "));
fakeData.strNr = lines[0].substring(lines[0].indexOf(" ")+1);
var line1 = lines[1].split(/[ ]+/);
console.log(line1);
fakeData.postalCode = line1[0]+" "+line1[1];
fakeData.city = lines[1].substring(fakeData.postalCode.length+1);
} else if(document.URL.includes("gr-gr")){
fakeData.street = lines[0].substring(0,lines[0].indexOf(" "));
fakeData.strNr = lines[0].substring(lines[0].indexOf(" ")+1);
var line1 = lines[1].split(/[ ]+/);
console.log(line1);
fakeData.postalCode = line1[0];
fakeData.city = lines[1].substring(fakeData.postalCode.length+1);
}

var dts = document.getElementsByTagName("dt");
for (let dt of dts) {
if (dt.innerText.includes("PESEL")) {
fakeData.name = dt.nextElementSibling.innerText;
} else if (dt.innerText.includes("Birthday")) {
var dates = dt.nextElementSibling.innerText.split(/[ ,]+/);
fakeData.month = dates[0];
fakeData.day = dates[1];
fakeData.year = dates[2];
} else if (dt.innerText.includes("Password")) {
fakeData.password = dt.nextElementSibling.innerText;
} else if (dt.innerText.includes("Username")) {
fakeData.username = dt.nextElementSibling.innerText;
} else if (dt.innerText.includes("Phone")) {
fakeData.phone = dt.nextElementSibling.innerText;
} else if (dt.innerText.includes("Country code")) {
fakeData.cc = dt.nextElementSibling.innerText;
}else if (dt.innerText.includes("Website")) {
fakeData.website = dt.nextElementSibling.innerText.toLowerCase();
}else if (dt.innerText.includes("Email Address")) {
fakeData.genemail = dt.nextElementSibling.innerText.substring(0,dt.nextElementSibling.innerText.indexOf("@"));
}
}


var userNames = [
fakeData.username + fakeData.day+ fakeData.day,
fakeData.username + fakeData.year,
fakeData.genemail + fakeData.year,
fakeData.genemail + fakeData.day+ fakeData.day,
fakeData.website + fakeData.day+ fakeData.day,
fakeData.website + fakeData.year
];


var randUser = Math.floor(Math.random() * userNames.length);

fakeData.username = userNames[randUser];
fakeData.username = fakeData.username.toLowerCase();

fakeData;


///////////////////////




https://generate-random.org/person-identity-generator?count=5&locale=tr_TR

var countVal = 20;

var count = document.getElementById("count");
count.value = countVal;

var generateButtons = document.querySelectorAll("button[type*='submit']");
generateButtons.forEach(function(button){
console.log(button.innerText);
if(button.innerText.includes("Generate persons")){
button.click();
}
});

// SET FLAG, PPL GENERATED

////////////////REFRESH CALLBACK//////////////////////////////////
var countVal = 20;
var count = document.getElementById("count");
count.value = countVal;

var persons = document.querySelectorAll("div[class*='col-md-6']");
var males = [];
var fakeDataArray = [];
var shouldSkip = false;
var c = 0;
persons.forEach(function(person){
c++;
console.log(c, countVal);
shouldSkip = false;
var td = person.querySelectorAll("td");
if(td===null || c >= countVal){
shouldSkip = true;
}else{
td.forEach(function(tdIn){
if(tdIn.innerText.includes("female")){
shouldSkip = true;
}

});}

if(shouldSkip===false){
males.push(person);
}
});

var fakeDataArray = [];
males.forEach(function(male){
var fakeData = {};
var td = male.querySelectorAll("td");

for(var i = 0; i < td.length; i++){
if(td[i].innerText.includes("First name")){
fakeData.name = td[i+1].innerText.replaceAll(" ","");
}else if(td[i].innerText.includes("Last name")){
fakeData.surname = td[i+1].innerText.replaceAll(" ","");
}else if(td[i].innerText.includes("Street")){
fakeData.street = td[i+1].innerText.substring(0,td[i+1].innerText.lastIndexOf(" ")-1);
fakeData.strNr = td[i+1].innerText.substring(td[i+1].innerText.lastIndexOf(" ")+1);
}else if(td[i].innerText.includes("Post code")){
fakeData.postalCode = td[i+1].innerText;
}else if(td[i].innerText.includes("City")){
fakeData.city = td[i+1].innerText;
}else if(td[i].innerText.includes("Birth date")){
fakeData.year = td[i+1].innerText.substring(0,td[i+1].innerText.indexOf("-"));
fakeData.month = td[i+1].innerText.substring(td[i+1].innerText.indexOf("-")+1,td[i+1].innerText.indexOf("-",td[i+1].innerText.indexOf("-")+1));
fakeData.day = td[i+1].innerText.substring(td[i+1].innerText.lastIndexOf("-")+1);
}else if(td[i].innerText.includes("City")){
fakeData.city = td[i+1].innerText;
}else if(td[i].innerText.includes("@")){
fakeData.username = td[i].innerText.substring(0,td[i].innerText.lastIndexOf("@")-1);
fakeData.username += fakeData.year;
fakeData.password = td[i].innerText.substring(td[i].innerText.lastIndexOf("@"));
}else if(td[i].innerText.includes("Swift")){
fakeData.password += td[i+1].innerText;
}
//genusername is missing
}

if(document.URL.includes("tr_TR")){
//random from 530-559
//7 random idigits
}

fakeDataArray.push(fakeData);
});






///////////////////////


var usernames = document.querySelectorAll("input[name*='username']");
usernames.forEach(function(item){
console.log(item);
item.value = "[email protected]";
});

var passwds = document.querySelectorAll("input[name*='password']");
passwds.forEach(function(item){
console.log(item);
item.value = "!";
});

var submit = document.querySelectorAll("input[value*='Submit']");

/////
var emails = document.querySelectorAll("input[name*='email']");
emails.forEach(function(item){
console.log(item);
item.value = "[email protected]";
});

var passwds = document.querySelectorAll("input[name*='password']");
passwds.forEach(function(item){
console.log(item);
item.value = "!";
});


var firstName = document.querySelectorAll("input[name*='profile.firstName']");
firstName.forEach(function(item){
item.value = "wladyslaw";
});

var lastName = document.querySelectorAll("input[name*='profile.lastName']");
lastName.forEach(function(item){
item.value = "motyka";
});

var birthDay = document.querySelectorAll("input[name*='profile.birthDay']");
birthDay.forEach(function(item){
item.value = "01";
});

var birthMonth = document.querySelectorAll("input[name*='profile.birthMonth']");
birthMonth.forEach(function(item){
item.value = "02";
});

var birthYear = document.querySelectorAll("input[name*='profile.birthYear']");
birthYear.forEach(function(item){
item.value = "1977";
});

var count = 0;
var checkbox_terms = document.querySelectorAll("input[id*='gigya-checkbox']");
checkbox_terms.forEach(function(item){
if(count < 2){
item.click();
count++;
}

});

var create_account = document.querySelectorAll("input[value*='Create account']")[0];
create_account.click();


setTimeout(function(){

var errors = document.querySelectorAll("span[class*='gigya-error-msg-active']");
errors.forEach(function(item){
console.log(item.innerText);
});

}, 2000);


/////////////////////////////////////////////////////////////////////////////////////
https://nationsleague-sales.tickets.uefa.com/account/register?returnPath=https%3A%2F%2Fnationsleague-sales.tickets.uefa.com%2Faccount

var nationality = document.getElementById("nationality");
nationality.value = "PL";

var passport = document.getElementById("passport");
passport.value = "AL8417274";

var address_line_1 = document.getElementById("address_line_1");
address_line_1.value = "Kaczorowa 10/1";

var address_zipcode = document.getElementById("address_zipcode");
address_zipcode.value = "00-012";

var address_town = document.getElementById("address_town");
address_town.value = "Marki";

var mobile_prefix = document.getElementById("mobile_prefix");
mobile_prefix.value = "48";

var mobile_number = document.getElementById("mobile_number");
mobile_number.value = "854125457";

var address_country = document.getElementById("address_country");
address_country.value = "PL";

var contactCriteria = document.getElementById("contactCriteria[PP].yes");
contactCriteria.click();

var save = document.getElementById("save");
save.click();



     
 
what is notes.io
 

Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 12 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.