I built an app with meteor-blaze and now I am trying to test it with CodeceptJS. The problem is, all my input fields have no values in the DOM (F12 mode), but I see the values in the browser. In meteor I use template-helpers to read them from my MongoDB-collection and pass them to blaze / spacebars. Therefore meteor writes all values with JavaScript in real-time (after the website is completely loaded/generated).
I have an input field with the value "codeceptjs". But I can't see it in the DOM (chrome: F12 mode). It shows me only this:
<div class="input"><input data-title type="text" title="Todo Title"></div>
However, in my Meteor blaze-file I have following:
<div class="input"><input data-title type="text" value={{title}} title="Todo Title"></div>
Also JQuery can't find them, because there are no values in the DOM:
jQuery('input[value="codeceptjs"]').length
0
How do I access a real-time input value with jQuery / codeceptjs without changing a working app?