在Selenium Python中通过xpath定位html元素

时间:2014-01-17 21:35:58

标签: python selenium xpath

我是Selenium的新用户并尝试访问并点击“图片”。一旦搜索了一些字符串,就会在Google页面上链接。但我无法做到这一点。以下是Selenium Python:

driver = webdriver.Firefox()
driver.get ('http://google.com')
q = driver.find_element_by_xpath ("id('gbqfq')")     # Search text box
q.send_keys ('Apple')
driver.find_element_by_name ('btnG').click()

# I am now going to access the 'Image' link through following comamnd
driver.find_element_by_xpath ("id('hdtb_msb')/x:div[2]/x:a").click()

错误如下:

selenium.common.exceptions.InvalidSelectorException: Message: u'The given selector id(\'hdtb_msb\')/x:div[2]/x:a is either invalid or does not result in a WebElement. The following error occurred:\nInvalidSelectorError: Unable to locate an element with the xpath expression id(\'hdtb_msb\')/x:div[2]/x:a because of the following error:\n[Exception... "An attempt was made to create or change an object in a way which is incorrect with regard to namespaces" 

我的问题: 1.为什么会出现此错误(我使用xpath Checker来获取xpath)? 2.访问此链接的其他可能方式有哪些?

谢谢!

经过我的研究:

看起来我必须抓住当前页面加载的句柄?请帮助我,我是全新的。

2 个答案:

答案 0 :(得分:2)

尝试删除名称空间(即x:)

答案 1 :(得分:0)

我相信您正在尝试搜索xpath,但也许您没有传递有效值;通常,xpath的语法是这一个:.//*[@id='hdtb-msb']/div[2]/a

我去谷歌页面,我检查了图片,例如这是它的xpath:.//*[@id='hplogo']

无论如何,我建议你为firefox下载firebug和firepath,并通过这个工具检索你需要的xpath