OpenTest 不为 ReadEmailImap 函数采用标准 JS 日期

OpenTest Doesn't Take a Standard JS Date for the ReadEmailImap function

我正在尝试将 sentAfter 的值传递给 org.opentest.ReadEmailImap 函数,该函数包含格式为 YYYY:MM:DD HH:DD:MM per this documentation

的字符串

我最接近这种格式的是.toISOString()ref

您可以使用 JavaScript API 自行构建日期,例如 here, or you can use a library like Moment.js (The moment.js file can be included in your test as described here)。第一种方法更适合快速而肮脏的一次性解决方案。如果您需要执行更高级的 date/time 逻辑,则第二个是最好的。