gpt4 book ai didi

java - sikuli中的日期函数

转载 作者:行者123 更新时间:2023-11-30 08:07:29 28 4
gpt4 key购买 nike

我需要在 sikuli 脚本中获取当前日期。我在脚本中使用以下代码片段,其中 DATE 已被硬编码,并且需要每天更改才能每天运行脚本。我试图在文档中查找,但找不到。代码片段:

type(Key.TAB + "ABC" + Key.TAB + "06-17-2015" + Key.TAB + Key.TAB + Key.DOWN + Key.TAB + Key.TAB + Key.TAB)

最佳答案

看看Python的timedatetime与Sikuli不兼容
例如:

import time

now = time.strftime('%c')

# Date
print ('Date: ' + time.strftime('%x'))
# Time
print('Current time: ' + time.strftime('%X'))
#Current date and time.
print ('Current time %s' % now )

“06-17-2015”更改为time.strftime('%m-%d-%y')

关于java - sikuli中的日期函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30894170/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com