单击按钮,每次更改其ID

时间:2018-12-04 06:14:22

标签: python selenium beautifulsoup webdriverwait mechanicalsoup

我使用Python和Selenium。 任务是单击带有 文本 '+ like'的按钮或带有'td'的列> =“个人资料图片” 。 但是按钮没有ID,其他按钮中使用的是 “更多喜欢” 。与 div class 'profile-image-button'相同的情况(div的类ID在其他'divs中使用')。 我试图获取'td'的ID:

button = photos.find('td', class_='profile-image')
print(button.get_id)

输出为“无”

这是网页的html代码:

<div id="category7515692" class="category-content" data-content="present" data-collapsing="true">
  <table class="pictures" data-columns-count="12" data-type="gallery">
    <tbody class="" data-selec="7565904" data-name="beauty" data-live="true">
      <tr data-mutable-id="MR1main" class="header">
        <td class="main-row-buttons" rowspan="1" data-mutable-id="Bmain">
          <table>
            <tbody>
              <tr>
                <td class="profile-image" id="view-75634" data-event-more-view="event-more-view" data-selec="7565904" islive="true" isseparatedbutton="false">
                  <div class="profile-image-button">
                    <span class="more-likes">+like</span>
                  </div>
                </td>
              </tr>
            </tbody>
          </table>
        </td>
      </tr>
    </tbody>
  </table>
</div>

如何单击按钮或获取ID?

2 个答案:

答案 0 :(得分:0)

假设只有一个带有文本“ + like”的按钮,则可以搜索具有特定文本的元素,如下所示:

driver.find_element_by_xpath("//*[contains(text(), '+like')]").click()

答案 1 :(得分:0)

所需元素是React元素,因此单击该元素必须使 WebDriverWait 变为可点击的 元素,并且可以使用以下任意一种元素以下解决方案:

  • 使用CSS_SELECTOR

    WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.CSS_SELECTOR, "td.profile-image>div.profile-image-button>span.more-likes"))).click()
    
  • 使用XPATH

    WebDriverWait(driver, 20).until(EC.element_to_be_clickable((By.XPATH, "//td[@class='profile-image']//span[@class='more-likes' and contains(.,'+like')]"))).click()
    
  • 注意:您必须添加以下导入:

    from selenium.webdriver.support.ui import WebDriverWait
    from selenium.webdriver.common.by import By
    from selenium.webdriver.support import expected_conditions as EC