可以在 devtools 中选择元素,但不能在 puppeteer 中选择

发布于 2025-01-10 12:45:59 字数 704 浏览 0 评论 0原文

我正在和木偶师一起工作。我想获取文本框中选定元素的节点值。使用开发工具我已经复制了选择器:

  var mySelector = "div.chosen-container.chosen-container-multi.filter-main-values.fmd-values.chosen-container-active.chosen-with-drop > ul > li.search-choice > span";

我可以使用它在开发工具中找到它:

在此处输入图像描述

但是运行我的 puppeteer 代码后:

  var selectedCountry = await page.evaluate((mySelector) => {return Array.from(document.querySelectorAll(mySelector))});
  console.log(selectedCountry);

在 vs code 调试窗口中,我看到:

(0) []

我做错了什么?

I'm working with puppeteer. I want to get the node value of a selected element in a textbox . Using dev tools I have copied the selector:

  var mySelector = "div.chosen-container.chosen-container-multi.filter-main-values.fmd-values.chosen-container-active.chosen-with-drop > ul > li.search-choice > span";

I can use this to find it in devtools:

enter image description here

But after running my puppeteer code:

  var selectedCountry = await page.evaluate((mySelector) => {return Array.from(document.querySelectorAll(mySelector))});
  console.log(selectedCountry);

In the vs code debug window, I see:

(0) []

What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你曾走过我的故事 2025-01-17 12:45:59

您没有正确地将选择器传递给 evaluate 函数。

var selectedCounty = await page.evaluate((selectedCountySelector) => {

  return Array.from(document.querySelectorAll(selectedCountySelector))

}, selectedCountySelector); // <-- pass it here

console.log(selectedCounty);

You are not passing the selector to the evaluate function properly.

var selectedCounty = await page.evaluate((selectedCountySelector) => {

  return Array.from(document.querySelectorAll(selectedCountySelector))

}, selectedCountySelector); // <-- pass it here

console.log(selectedCounty);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文