Help with macro

Hello, I am having trouble creating a working Kantu script to automatically populate my time sheet each week. I have included my macro below. Basically the issue I am having is when it goes to click “Save” the times are not saved. I tried setting up an XClick function instead of a click function but did not have much luck. It would not click the button. I believe because what I need to populate and click is a “popup” within the web page. Does anyone have any tips?

{
“Name”: “TEST#3”,
“CreationDate”: “2019-4-9”,
“Commands”: [
{
“Command”: “open”,
“Target”: “https://COMPANYWEBSITE/etime/Timesheet/Detail/207386”,
“Value”: “”
},
{
“Command”: “clickAt”,
“Target”: “xpath=//[@id="timesheetdetail-container"]/div[2]/div[3]/button/span",
“Value”: “9,5”
},
{
“Command”: “clickAt”,
“Target”: "xpath=//
[@id="modal-container"]/div[2]”,
“Value”: “232,215”
},
{
“Command”: “type”,
“Target”: “id=dte_Start”,
“Value”: “7:00 AM”
},
{
“Command”: “type”,
“Target”: “id=dte_End”,
“Value”: “12:00 PM”
},
{
“Command”: “clickAt”,
“Target”: “xpath=//*[@id="btn_Modal_Save_1"]/span”,
“Value”: “14,9”
}
]
}