lovelyCARDINAL/WikiBots

View on GitHub
src/draft/honkai3wallpaper.js

Summary

Maintainability
A
0 mins
Test Coverage
import axios from 'axios';
import { load } from 'cheerio';

axios.get('https://www.bh3.com/wallpapers').then(({ data }) => {
    const $ = load(data);
    const img = $('.paper-item > a').get(0)?.attribs.href;
    console.log(img);
});