Вот базовый код ... есть операторы require, которые я пропустил ... этот код выводит ссылку в консоли. Я хочу сохранить эту ссылку в переменной, чтобы использовать ее позже.
app.post('/search', function(req, res){
const val = req.body.searchText;
const nightmare = new Nightmare({
show: true
});
let aa;
(async function() {
await nightmare
.goto('https://google.com/')
.insert('#tsf > div:nth-child(2) > div.A8SBwf > div.RNNXgb > div > div.a4bIc > input', val + ' + MuzzMusic.com')
.click('#tsf > div:nth-child(2) > div.A8SBwf > div.FPdoLc.tfB0Bf > center > input.gNO89b')
.click('#rso > div:nth-child(1) > div > div.r > a > h3')
.evaluate(() => {
aa = document.querySelector('#post-54106 > div > div.entry-content > p:nth-child(4) > a').href
return aa
})
.end()
.then(console.log)
.catch((err) => {
console.log(err)
})
console.log('aa ==== ' + aa) //checking if it works
})