2017-09-19 120 views
-4
<a class="page-link" title="Next page" data-page-number="3" href="/recruiter/smartsearch?searchHistoryId=1702735186&amp;searchCacheKey=1fdcde45-657b-4666-824a-12ab561b3a91%2Cm9d5&amp;searchRequestId=d371cf7e-2703-43de-9fe5-218fad50e152%2C5wG7&amp;searchSessionId=1702735186&amp;linkContext=Controller%3AsmartSearch%2CAction%3Asearch%2CID%3A1702735186&amp;doExplain=false&amp;start=50" rel="next"> 
    <svg aria-hidden="true"> 
     use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#chevron-right-icon" data-size="small"></use></svg><span class="hide-a11y">Go to page 3</span></a> 

我使用一個電話硒似乎無法一個href點擊

driver.find_element_by_css_selector('a[title="Next page"]').click() 

但這返回一個空字符串

+1

在提出更多問題之前,請閱讀[我如何提出一個好問題?](https://stackoverflow.com/help/how-to-ask)。 –

+3

單擊鏈接如何返回空(或不空)字符串?你想要你的腳本做什麼?用更多細節描述你的問題(添加異常日誌) – Andersson

回答

0

嘗試使用XPath

//a[@title='Next page'] 
+1

是否有任何理由使用這個XPath而不是完全相同的CSS選擇器? – Andersson