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
let descriptions = document.querySelectorAll('div[data-e2e="search-card-desc"]'); | |
let accounts = document.querySelectorAll('p[data-e2e="search-card-user-unique-id"]'); | |
let views = document.querySelectorAll('div[data-e2e="search-card-like-container"]'); | |
let dates = document.querySelectorAll('[class*="DivTimeTag"]'); | |
let videoDivs = document.querySelectorAll('div[data-e2e="search_video-item"]'); | |
function getVideoLink(index) { | |
const div = videoDivs[index]; | |
const link = div ? div.querySelector('a') : null; | |
return link ? link.getAttribute('href') : null; |