0

テーブル内にある要素(usersという名前)をダブルクリックする必要があります。xpath で試してみましたが、「要素が見つかりません」というエラーが表示されます。私もclassName、linkText、tagNameで試しました。誰でもこれで満足できますか。

これがhtmlコードの一部です

<div id="gridpanel-1064" class="x-panel filesystem-filegrid x-grid-with-row-lines x-border-item x-box-item x-panel-default x-grid" style="right: auto; left: 305px; top: 0px; margin: 0px; width: 1373px; height: 343px;">
<div id="gridpanel-1064_header" class="x-panel-header x-docked x-panel-header-default x-docked-top x-panel-header-docked-top x-panel-header-default-docked-top x-layout-fit" style="width: 1373px; right: auto; left: 0px; top: 0px;">
<div id="toolbar-1075" class="x-toolbar x-docked x-toolbar-default x-docked-top x-toolbar-docked-top x-toolbar-default-docked-top x-box-layout-ct" style="width: 1373px; right: auto; left: 0px; top: 32px;">
<div id="headercontainer-1065" class="x-grid-header-ct x-docked x-grid-header-ct-default x-docked-top x-grid-header-ct-docked-top x-grid-header-ct-default-docked-top x-box-layout-ct" style="border-width: 1px; width: 1373px; right: auto; left: 0px; top: 59px;">
<div id="gridpanel-1064-body" class="x-panel-body x-grid-body x-panel-body-default x-layout-fit x-panel-body-default" style="width: 1373px; left: 0px; height: 226px; top: 84px;">
    <div id="gridview-1074" class="x-grid-view x-fit-item x-grid-view-default x-unselectable" style="overflow: auto; margin: 0px; width: 1371px; height: 224px;" tabindex="-1">
        <table id="gridview-1074-table" class="x-gridview-1074-table x-grid-table" cellspacing="0" cellpadding="0" border="0" tabindex="-1" style="width: 918px;">
            <colgroup>
            <colgroup>
            <colgroup>
            <colgroup>
            <colgroup>
            <colgroup>
            <colgroup>
            <colgroup>
            <colgroup>
            <tbody id="gridview-1074-body">
                <tr id="gridview-1074-record-ext-record-23" class="x-grid-row x-grid-data-row" tabindex="-1" data-recordindex="0" data-recordid="ext-record-23" data-boundview="gridview-1074">
                <tr id="gridview-1074-record-ext-record-24" class="x-grid-row x-grid-row-alt x-grid-data-row" tabindex="-1" data-recordindex="1" data-recordid="ext-record-24" data-boundview="gridview-1074">
                <tr id="gridview-1074-record-ext-record-25" class="x-grid-row x-grid-data-row" tabindex="-1" data-recordindex="2" data-recordid="ext-record-25" data-boundview="gridview-1074">
                <tr id="gridview-1074-record-ext-record-26" class="x-grid-row x-grid-row-alt x-grid-data-row" tabindex="-1" data-recordindex="3" data-recordid="ext-record-26" data-boundview="gridview-1074">
                <tr id="gridview-1074-record-ext-record-27" class="x-grid-row x-grid-data-row" tabindex="-1" data-recordindex="4" data-recordid="ext-record-27" data-boundview="gridview-1074">
                    <td class="x-grid-cell x-grid-td x-grid-cell-gridcolumn-1100 x-grid-cell-first x-unselectable x-grid-cell-special x-grid-cell-row-checker">
                    <td class="x-grid-cell x-grid-td x-grid-cell-actioncolumn-1066 x-unselectable x-action-col-cell">
                    <td class="x-grid-cell x-grid-td x-grid-cell-gridcolumn-1067 x-unselectable ">
                        <div class="x-grid-cell-inner" style="text-align:left;" unselectable="on">users</div>
                    </td>
                    <td class="x-grid-cell x-grid-td x-grid-cell-actioncolumn-1068 x-unselectable x-action-col-cell">
                    <td class="x-grid-cell x-grid-td x-grid-cell-gridcolumn-1069 x-unselectable ">
                    <td class="x-grid-cell x-grid-td x-grid-cell-gridcolumn-1070 x-unselectable ">
                    <td class="x-grid-cell x-grid-td x-grid-cell-gridcolumn-1071 x-unselectable ">
                    <td class="x-grid-cell x-grid-td x-grid-cell-gridcolumn-1072 x-unselectable ">
                    <td class="x-grid-cell x-grid-td x-grid-cell-gridcolumn-1073 x-grid-cell-last x-unselectable ">
                </tr>
            </tbody>
        </table>
    </div>
</div>
4

4 に答える 4

0

多分このようなもの:

driver.findElement(By.xpath("//div[contains(string(), 'users')]"));
于 2013-06-13T13:55:42.107 に答える
0

あなたの現在のXPathは間違っています:

//table/tbody/tr[5]/tr[3]/div

それが何をするか見てください。

table、その、5番目(行) に入りますが、間違いは、その中のtable3番目(行、覚えていますか?) に入るということです。tbody tr tr

それを取って、あなたが持っているものと比較してください。

あなたが望む、おそらく:

//table/tbody/tr[5]/td[3]/div

同様に、5 番目のtr (行)内の3 番目 td(セル)。

于 2013-06-12T20:38:12.187 に答える
0

usersこの XPath は、クラスが次のテキストを含む div を選択します。x-grid-cell-inner


XPath

//div[contains(., 'users') and contains(@class, 'x-grid-cell-inner')]

要素を検索

<div class="x-grid-cell-inner" style="text-align:left;" unselectable="on">users</div>

これらの属性を持つ div が複数ある場合は、XPath に追加の修飾子を適用する必要があります。

于 2013-06-12T21:02:59.130 に答える