我想问一下,使用这种方法赋值后如何获取文本框的值?
$(document).ready(function() {
$('#job_description').val('This is test');
});
将值分配给文本时,不再使用 Casperjs 方法进行访问
console.log(this.fetchText('#job_description'));
但是如果我使用这种方法输入值
<textarea name="" id="job_description"> This is test </textarea>
然后可以使用此方法访问
console.log(this.fetchText('#job_description'));