yt-search-selenium
v1.0.3
Published
Get the search results from youtube with selenium
Readme
Youtube Search Selenium
Simple search on youtube using selenium
Requirements
- Node.js 22.x.x
Installation
npm install yt-search-seleniumExample
const YoutubeSearch = require('yt-search-selenium');
(async () => {
const YTS = new YoutubeSearch('edge', true);
const o = await YTS.search('windah', 100);
console.log(o);
})()
