Pythonスクリプトで動作するsikuliを使用しているため、テストケースを作成する必要があります。ここでは、ローカルシステム時間をテキストファイルに書き込むことができません。
import time;
localtime = time.localtime(time.time())
inp=file("C:\\Users\\%path%\\Log.txt", 'w')
inp.write('************** Full Process ****************\n')
inp.write('Local current time :', localtime) incorrect
ここで .txt ファイルを作成していますが、時間を書かなければならず、コードの書き方がわかりません。