I've been noticing resolutions will log their beat message but then redundantly also log the retval from the resolution.resolve.
Marcel sees if the username field is visible.
Marcel inspects the username field.
=> <None>
... hoping it's visible.
=> the element is visible
The ... hoping it's visible. and the => the element is visible are communicating the same thing. I believe the resolve methods dont really need to log the return value.
The current behavior also can lead to confusion. We note that the question returned <None> but the resolution logging can make it seem as if the element not only was present, but was also matched; when in fact, it was not.
I've been noticing resolutions will log their
beatmessage but then redundantly also log the retval from theresolution.resolve.The
... hoping it's visible.and the=> the element is visibleare communicating the same thing. I believe the resolve methods dont really need to log the return value.The current behavior also can lead to confusion. We note that the question returned
<None>but the resolution logging can make it seem as if the element not only was present, but was also matched; when in fact, it was not.