1
轉義特殊字符-
時出現問題。下面是HTML代碼片段:Watir:轉義特殊字符
<input class="form-control dob ng-pristine ng-valid" type="text" readonly="readonly" data-date-format="mm/dd/yy" ng-model="pollObj.poll_question.start_time" datepicker=""></input>
<span></span>
<input class="form-control dob ng-pristine ng-valid" type="text" readonly="readonly" data-date-format="mm/dd/yy" ng-model="pollObj.poll_question.end_time" datepicker=""></input>
我使用watir web driver
選擇從日期選擇器的日期。
因此,如果我不得不點擊上面的html代碼片段中的第一個輸入,唯一可以區分的是ng-model
的值。因此,我認爲寫這樣的:
browser.input(:ng-model="pollObj.poll_question.start_time").when_present.click
在上面的代碼,我需要在ng-model
逃脫-
。使用反斜槓沒有幫助。
有人可以幫忙嗎?