PennController for IBEX › Forums › Support › Two issues with logging and results › Reply To: Two issues with logging and results
Hi,
I have the same issue. This is what I have:
newTrial(“subject_info”,
newHtml(“subject_info”, “info.html”)
.log()
.cssContainer({“width”:”720px”})
.checkboxWarning(“I consent to participate”)
.center()
.print()
,
newButton(“continue”, “Click to continue”)
.center()
.print()
.wait(getHtml(“subject_info”).test.complete()
.failure(getHtml(“subject_info”).warn())
)
)
But it doesn’t seem to work. The results file did not show subjects’ meta data. I also tried putting .log() at the end of the newTrial, but it doesn’t seem to work for me either.
newTrial(“subject_info”,
newHtml(“subject_info”, “info.html”)
.cssContainer({“width”:”720px”})
.checkboxWarning(“I consent to participate”)
.center()
.print()
,
newButton(“continue”, “Click to continue”)
.center()
.print()
.wait(getHtml(“subject_info”).test.complete()
.failure(getHtml(“subject_info”).warn())
)
).log()
Am I missing something?
Best,