使用python+selenium+phantomjs 怎么获取input里面的value值

2024-12-31 01:17:41
推荐回答(2个)
回答1:

应该使用get_attribute方法:
driver.find_element_by_xpath('//*[@id="key_company$value"]').get_attribute("value")
这个肯定能解决你的问题。
get_attribute获得标签的属性值:也可获取 img,a,table,input 的属性值

回答2:

印象中input没办法用getText,