VikasMahato

Untitled

Jan 27th, 2018
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     const topsitesEditBtn = document.querySelector(".edit-topsites-button button");
  2.     topsitesEditBtn.click();
  3.  
  4.     //Find the "Add" button
  5.     const topsitesAddBtn = document.querySelector(".add");
  6.     topsitesAddBtn.click();
  7.  
  8.     // Write field title
  9.     let fieldTitle = document.querySelector(".field.title input");
  10.     fieldTitle.value = "Youtube";
  11.  
  12.     // Write field url
  13.     let fieldURL = document.querySelector(".field.url input");
  14.     fieldURL.value = "https://www.youtube.com/";
  15.  
  16.     //Click the "Add" button
  17.     let addBtn = content.document.querySelector(".done.add").click();
Add Comment
Please, Sign In to add comment