问题内容
我有一个页面,其中有多个文本区域,这些文本区域由动态名称和相同的类组成。这意味着我无法通过 id、名称、类或类型来选择它们。
我所知道的是,在 5 个文本区域中,我需要第一个,并且我想更改该文本区域的值。
谁能告诉我如何使用 chromedp 做到这一点?尝试了两天了,没有任何进展。
找到答案:
const n = document.querySelector('.elementor-repeater-fields:nth-child(2) textarea');控制台.log(n);
正确答案
使用伪类:first-child a> 或 :nth-child 进行选择目标元素。例如:
package main
import (
"context"
"fmt"
"net/http"
"net/http/httptest"
"time"
"github.com/chromedp/chromedp"
)
func main() {
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, `
`)
}))
defer ts.Close()
opts := append(chromedp.DefaultExecAllocatorOptions[:],
chromedp.Flag("headless", false),
)
ctx, cancel := chromedp.NewExecAllocator(context.Background(), opts...)
defer cancel()
ctx, cancel = chromedp.NewContext(ctx)
defer cancel()
err := chromedp.Run(ctx,
chromedp.Navigate(ts.URL),
chromedp.Sleep(time.Second),
chromedp.SetValue(`body>textarea:first-child`, "hello world!", chromedp.ByQuery),
chromedp.Sleep(time.Second),
chromedp.SetValue(`body>textarea:nth-child(2)`, "hello chromedp!", chromedp.ByQuery),
chromedp.Sleep(3*time.Second),
)
if err != nil {
panic(err)
}
}
以上就是chromedp 如何从多个具有动态名称的文本区域中选择特定文本区域的详细内容,更多请关注编程网其它相关文章!
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
软考中级精品资料免费领
- 历年真题答案解析
- 备考技巧名师总结
- 高频考点精准押题
- 资料下载
- 历年真题
193.9 KB下载数265
191.63 KB下载数245
143.91 KB下载数1148
183.71 KB下载数642
644.84 KB下载数2756
相关文章
发现更多好内容猜你喜欢
AI推送时光机chromedp 如何从多个具有动态名称的文本区域中选择特定文本区域
后端开发2024-02-06
咦!没有更多了?去看看其它编程学习网 内容吧