硒:NoSuchElementException
Selenium: NoSuchElementException
我正在尝试抓取此页面:http://www.ebay.com/itm/311419628966 使用以下 XPath:
• .//*[@id='ds_div']
• .//*[@id='pdets']
• .//*[@id='centercolumn']/
但他们都抛出 NoSuchElementException。
这很奇怪,因为当我使用 Firebug 检查页面时,我能够轻松找到该元素。
具有这些 id
值的元素在 frame
中。您需要切换到它的上下文:
driver.switchTo().frame("desc_ifr");
我正在尝试抓取此页面:http://www.ebay.com/itm/311419628966 使用以下 XPath:
• .//*[@id='ds_div']
• .//*[@id='pdets']
• .//*[@id='centercolumn']/
但他们都抛出 NoSuchElementException。
这很奇怪,因为当我使用 Firebug 检查页面时,我能够轻松找到该元素。
具有这些 id
值的元素在 frame
中。您需要切换到它的上下文:
driver.switchTo().frame("desc_ifr");