如何在硒的子元素中获得链接?

发布于 2025-01-23 19:05:09 字数 565 浏览 0 评论 0原文

我有以下html代码:

   <div id="category">    //parent div
    <div class="username"> // n-number of elements of class username which all exist within parent div
      <a rel="" href="link" title="smth">click</a>          
    </div> 
    </div> 

我想获得所有链接,但只有类用户名,但只有parent div中的late in id =类别。当我执行下面的代码时,它不起作用。我只能默认访问标题属性,但不能提取链接。有人有解决方案吗?

  a = driver.find_element_by_id('category').find_elements_by_class_name("username")
    links = [x.get_attribute("href") for x in a]

I have the following html code:

   <div id="category">    //parent div
    <div class="username"> // n-number of elements of class username which all exist within parent div
      <a rel="" href="link" title="smth">click</a>          
    </div> 
    </div> 

I want to get all the links witin the class username BUT only those within the parent div where id=category. When I execute the code below it doesn´t work. I can only access the title attribute by default but can´t extract the link. Does anyone have a solution?

  a = driver.find_element_by_id('category').find_elements_by_class_name("username")
    links = [x.get_attribute("href") for x in a]

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

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

发布评论

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

评论(1

撧情箌佬 2025-01-30 19:05:09

使用以下CSS选择器,该选择器将返回所有锚固标签。

links = [x.get_attribute("href") for x in driver.find_elements(By.CSS_SELECTOR,"#category > .username >a")]

或者

links = [x.get_attribute("href") for x in driver.find_elements_by_css_selector("#category > .username >a")]

Use the following css selector which will return all the anchor tags.

links = [x.get_attribute("href") for x in driver.find_elements(By.CSS_SELECTOR,"#category > .username >a")]

Or

links = [x.get_attribute("href") for x in driver.find_elements_by_css_selector("#category > .username >a")]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文