使用Selenium(Python)获取输入框的值
我正在尝试提取输入框中的文本,
<input type="text" name="inputbox" value="name" class="box">
我开始
input = driver.find_element_by_name("inputbox")
我尝试了input.getText()但我得到了
AttributeError: 'WebElement' object has no attribute 'getText'
回答:
使用它来获取输入元素的值:
input.get_attribute('value')
以上是 使用Selenium(Python)获取输入框的值 的全部内容, 来源链接: utcz.com/qa/427209.html