在編寫自動(dòng)化過程中,會(huì)遇到需要將頁面值存儲(chǔ),供后續(xù)腳本使用的場(chǎng)景,再實(shí)際應(yīng)用過程中,遇到幾個(gè)場(chǎng)景,記錄一下
case1
在實(shí)際使用airtest過程中使用,常規(guī)存儲(chǔ)
testcode=driver.find_element(By.ID,"spTestCode")
testc=testcode.get_attribute('innerText')
case2
selenium方式獲取text
# Navigate to url
driver.get("https://www.example.com")
# Retrieves the text of the element
text = driver.find_element(By.CSS_SELECTOR, "h1").text
case2在airtest情況下未生效
小結(jié)
(1)簡(jiǎn)單說巍扛,get_property 就是取元素屬性的俄讹,該元素有id榴捡,有name,就可以通過該方法然稹塌鸯;
(2)get_attribute("value")褐望,就是去文本框中輸入的內(nèi)容蜕琴。
(3).text 屬性,就是元素本身的文字顯示能曾。