Advertisement
aminsbd

shopee scrape url from search query

Mar 26th, 2025
378
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // document.getElementsByClassName('css-5wh65g')
  2.  
  3. var items = document.querySelectorAll('.contents');
  4. // var items = data.querySelectorAll('[data-sqe="link"]');
  5. var gabung = '';
  6.  
  7.  
  8. for(var i=0;i<items.length;i++){
  9.     var item =    items[i].href;                          
  10.     gabung += item+"\n";
  11.     console.log(item);
  12. }
  13.  
  14. // kode untuk copy to clipboard secara otomatis data yang telah dikoleksi
  15. copyToClipboard(gabung); function copyToClipboard(text) { var dummy = document.createElement("textarea"); document.body.appendChild(dummy); dummy.value = text; dummy.select(); document.execCommand("copy"); document.body.removeChild(dummy); alert("Berhasil dicopy!"); }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement