Geb 筆記 (2) 編碼設定
學一個東西,查到的文件資源大多使用英文,所以範例也都是測試英文網站。要測試中文網站時,就有可能會遇上編碼問題。 程式編碼 設定task執行編碼使用utf-8。 tasks.withType(GroovyCompile) { groovyOptions.encoding = 'utf-8' } 報表亂碼 設定report編碼為utf-8。 systemProperty("file.encoding","utf-8")