0

python:sel.is_element_present( "// div [@ id ='USER_PHOTOS'] / div [1] / span [1] / img)を使用してSelenium RCで検証しようとしましたが、正しく取得できないようです。これ:sel.is_element_present( "// div [@ id ='USER_PHOTOS'])動作します。ここでサブタグが見つからない理由を誰かがしました:

<div class="bx01 deals swirllinks">
<div id="USER_PHOTOS" class="bx01">
<div class="ug_photos">
    <span class="u_/LocationPhotos-g294212-d1234659-Fairmont_Beijing-Beijing.html#41195738 fkASDF fkLnk" onclick="setPID(3901); return ta.call('ta.overlays.Factory.photosLB', event, this);">
        <img class="ug_photo" alt="coffee machine" src="http://ccm.ddcdn.com/ext/photo-l/02/5d/7c/f6/coffee-machine.jpg"/>
    </span>
    <span class="u_/LocationPhotos-g294212-d1234659-Fairmont_Beijing-Beijing.html#41195739 fkASDF fkLnk" onclick="setPID(3901); return ta.call('ta.overlays.Factory.photosLB', event, this);">
        <img class="ug_photo" alt="bathroom" src="http://ccm.ddcdn.com/ext/photo-l/02/5d/7c/f7/bathroom.jpg"/>
    </span>
4

1 に答える 1

0

xpath-// div [@ id ='USER_PHOTOS'] / div [1] / span [1] / imgで、seleniumはdiv id=USER_PHOTOSの下のdivを検索します。あなたのスパンは「USER_PHOTOS」の下にありません<div class="ug_photos">

あなたは使用する必要があります//div[@class='ug_photos']//span[1]/img

于 2012-03-23T05:02:13.273 に答える