今天在寫腳本的時候,出現了 'unicode' object is not callable 的錯誤,上網查找後發現原來錯把webdriver.title寫成了webdriver.title(),其源碼以下web
1 def title(self): 2 """Returns the title of the current page. 3 4 :Usage: 5 driver.title 6 """ 7 resp = self.execute(Command.GET_TITLE) 8 return resp['value'] if resp['value'] is not None else ""
返回當前頁面的標題,使用方法是:driver.title