需要帮助找到/点击使用selenium位于表格中的下拉列表

时间:2015-01-02 20:01:49

标签: python python-2.7 selenium selenium-webdriver

我正在编写一个脚本来定位/单击下拉列表,然后使用selenium和python单击所选下拉列表中的任何项目。

以下是代码,并希望您的帮助使其更好,如果它的正确和纠正它,如果它不正确的方式。

代码段:

table1 = self.browser.find_element_by_id('user-list-table')
trows = table1.find_elements_by_tag_name('tr')
for trow in trows:
    tcols = trow.find_element_by_tag_name('td')
    for tcol in tcols:
        if tcol ==("//button[@id='dropdownMenu1'][3]"):
            self.browser.find_element_by_xpath(tcol).click()
            self.browser.find_element_by_link("//a[contains(text(),'Edit User')][3]").click()

HTML片段:

<table class="table table-bordered table-striped datatable" id="user-list-table">
                <thead>
                    <tr>
                        <th>Status</th>
                        <th>First Name</th>
                        <th>Last Name</th>
                        <th>Employee ID</th>
                        <th>Patient Load<br>Permanent | Temporary</th>
                        <th>No. of Tasks<br>Priority | Total</th>
                        <th>Tasks Per Day (completed)<br>Week | Month | Quarter</th>
                        <th class="text-right">User Actions</th>
                    </tr>
                </thead>
                <tbody>
                    <tr class="odd">
                        <td class="text-center"><i class="status status-available">01</i></td>
                        <td>Tracy</td>
                        <td>Jones</td>
                        <td>1001</td>
                        <td>10 | 5</td>
                        <td>30 | 50</td>
                        <td>45 | 60 | 50</td>
                        <td class="text-right">
                            <div class="dropdown">
                              <button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true">
                                User Actions
                                <span class="caret"></span>
                              </button>
                              <ul class="dropdown-menu dropdown-menu-right" role="menu">
                                <li role="presentation"><a role="menuitem" tabindex="-1" href="patient-assignment.html"><i class="fa fa-exchange"></i> Assign Patients</a></li>
                                <li role="presentation"><a role="menuitem" tabindex="-1" href="#" data-toggle="modal" data-target="#User-Calendar-Today"><i class="fa fa-calendar"></i> Todays Availability</a></li>
                                <li role="presentation"><a role="menuitem" tabindex="-1" href="user-profile.html"><i class="fa fa-user"></i> View Profile</a></li>
                                <li role="presentation"><a role="menuitem" tabindex="-1" href="user-account.html"><i class="fa fa-pencil"></i> Edit User</a></li>
                                <li role="presentation" class="divider"></li>
                                <li role="presentation"><a role="menuitem" tabindex="-1" href="#"><i class="fa fa-times-circle"></i> Deactivate User</a></li>
                              </ul>
                            </div>
                        </td>
                    </tr>

1 个答案:

答案 0 :(得分:0)

虽然我不确定我是否理解你所遇到的问题(或试图解决),但我会尝试。

如果我是你,试图点击列表中的特定项目,我只会在第一时间创建这些项目的列表,然后循环浏览它一次,点击我去的地方。代码可能看起来像这样。

item_list = driver.find_elements_by_xpath('//button[@id="dropdownMenu1"]') #you can add further specifications as necessary

至少,如果您只想创建要检查的项目列表,则可以修改一对for loopsSee docs

这有帮助吗?我发现你已经找到了元素(而不仅仅是单个元素),所以我可能不能很好地理解这个问题,无法充分提出建议。考虑在评论中提供有关您的问题/目标的更多说明或编辑您的问题。谢谢,祝你好运!

编辑:虽然我的回答暗示了,但我应该更清楚。我相信,如果您只是通过循环和检查尝试到达元素,那么使用XPATH可能是有意义的。它最适合在XML文档中查找非常具体(一次性)的元素。只是我的tuppence。

第二次编辑:

以下是您需要的链接列表(我认为):

list_of_links = driver.find_elements_by_xpath('//li[@role="presentation"]/a') # len(list) == 99

然后,如上所述,您可以循环这一个列表并.click()每个链接。

for link in list_of_links:
    link.click()

让我知道它是否有效。祝你好运!!