使用python+selenium+phantomjs 怎么获取input里面的value值
<inputname=""type="hidden"id="key_company$value"value="AI-Denmark">里面的值我试过这样company=d...
<input name="" type="hidden" id="key_company$value" value="AI-Denmark">里面的值
我试过这样company =driver.find_element_by_xpath('//*[@id="key_company$value"]').text
但是这样并没有打印出值,值为空,求大神解答 展开
我试过这样company =driver.find_element_by_xpath('//*[@id="key_company$value"]').text
但是这样并没有打印出值,值为空,求大神解答 展开
展开全部
应该使用get_attribute方法:
driver.find_element_by_xpath('//*[@id="key_company$value"]').get_attribute("value")
这个肯定能解决你的问题。
get_attribute获得标签的属性值:也可获取 img,a,table,input 的属性值
driver.find_element_by_xpath('//*[@id="key_company$value"]').get_attribute("value")
这个肯定能解决你的问题。
get_attribute获得标签的属性值:也可获取 img,a,table,input 的属性值
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询