1. 程式人生 > >robot framework選擇時間操作

robot framework選擇時間操作

通過給時間控制元件賦值的方法進行操作:

Assign Id To Element        //*[@id="updateDateEmail_start"]        time1

Execute Javascript  window.document.getElementById('time1').value='08-08-2018'  

Sleep 2              

Assign Id To Element        //*[@id="updateDateEmail_end"]          time2

Execute Javascript  window.document.getElementById('time2').value='08-08-2018'  

分別取得開始時間與結束時間的輸入框id,賦予新的id,進行操作,輸入要輸入的時間,注意時間格式要與手動選擇或輸入時格式一致。