I use this:
${today}=  Get Time
${today_formated}=  Convert Date  ${today}  result_format=%d
The result is 01 for the 1st day of the month but I need 1.
How to remove 0 at the start?
My question is on the day of the month not on the month number
full robotframework script:
*** Settings ***
Library    SeleniumLibrary
Library    DateTime
*** Keywords ***
test
    ${today}=           Get Time
    ${today_formated}=  Convert Date      ${today}  result_format=%d
    Log To Console  ${today_formated}
*** Test Cases ***
PLFT
    [Tags]  foo|AC0
    Given test
01
 
     
    