How to set HTML5 type=quot;datequot; input fields (e.g. in Chrome) using Selenium/Protractor?(如何设置 HTML5 type=date;使用 Selenium/Protractor 的输入字段(例如在 Chrome 中)?)
问题描述
我想更新一些 HTML5 日期表单字段的日期值(显示为 mm/dd/yyyy,仅数字部分可修改):
I want to update the date value (displayed as mm/dd/yyyy with only the number portions modifiable) of some HTML5 date form fields:
<input type="date"/>
在我的 Selenium/Protractor 测试中.我已经尝试为此使用 sendKeys
但(在 Chrome 上)到目前为止还没有成功.
in my Selenium/Protractor tests. I've tried using sendKeys
for this but (on Chrome) have not been successful so far.
有没有办法使用 sendKeys
做到这一点?还是有其他方法?
Is there a way to do this using sendKeys
? Or some other way to do it?
推荐答案
在 Mac 上使用 Chrome 和 Protractor,以下方法对我有用.
Using Chrome on Mac with Protractor, the following approach has worked for me.
模板 (html5)
<input type="date" placeholder="Due Date" ng-model="newLesson.dueDate">
测试
this.newLessonDate = element( by.model('newLesson.dueDate') );
this.newLessonDate.sendKeys('01-30-2015');
在我输入日期格式为01-30-2015"之前,我一直收到错误.
I kept getting errors until I entered the date format as '01-30-2015'.
这篇关于如何设置 HTML5 type="date";使用 Selenium/Protractor 的输入字段(例如在 Chrome 中)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何设置 HTML5 type="date";使用 Selenium/Protractor 的输入字段(例如在 Chrome 中)?


基础教程推荐
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01