You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
843 B
25 lines
843 B
*** Settings ***
|
|
Test Teardown
|
|
Library DateTime
|
|
|
|
*** Test Cases ***
|
|
current_datetime
|
|
${current_time} Get Current Date
|
|
log ${current_time}
|
|
${current_date} Convert Date ${current_time} result_format=%Y-%m-%d
|
|
log ${current_date}
|
|
Set Global Variable ${current_date}
|
|
|
|
current_datetime_month
|
|
${current_time} Get Current Date
|
|
log ${current_time}
|
|
${current_date_month} Convert Date ${current_time} result_format=%Y-%m
|
|
log ${current_date_month}
|
|
Set Global Variable ${current_date_month}
|
|
|
|
current_datetime_second
|
|
${current_time} Get Current Date
|
|
log ${current_time}
|
|
${current_date_second} Convert Date ${current_time} result_format=%Y-%m-%d %H:%M:%S
|
|
log ${current_date_second}
|
|
Set Global Variable ${current_date_second}
|