# 用contains,尋找頁面中style屬性值包含有sp.gif這個關鍵字的所有div元素,其中@后面可以跟該元素任意的屬性名。
self.driver.find_element_by_xpath('//div[contains(@style,"sp.gif")]').click()
# 用start-with,尋找style屬性以position開頭的div元素,其中@后面可以跟該元素任意的屬性名。
self.driver.find_element_by_xpath('//div[start-with(@style,"position")]').click()
# 用Text,直接查找頁面當中所有的退出二字,經常用於純文字的查找。
self.driver.find_element_by_xpath('//*[text()="退出"]').click()
# 用於知道超鏈接上顯示的部分或全部文本信息
self.driver.find_element_by_xpath('//a[contains(text(), "退出")]').click()