[
https://issues.apache.org/jira/browse/TAP5-2399?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14179427#comment-14179427
]
Hudson commented on TAP5-2399:
------------------------------
SUCCESS: Integrated in tapestry-trunk-freestyle #1341 (See
[https://builds.apache.org/job/tapestry-trunk-freestyle/1341/])
TAP5-2399: SeleniumTestCase.waitForAjaxRequestsToComplete() not working when
using Prototype (hlship: rev 750ffdbdedac5b58074794d9a6c21e973fc96365)
* tapestry-test/src/main/java/org/apache/tapestry5/test/SeleniumTestCase.java
> SeleniumTestCase.waitForAjaxRequestsToComplete() not working when using
> Prototype
> ---------------------------------------------------------------------------------
>
> Key: TAP5-2399
> URL: https://issues.apache.org/jira/browse/TAP5-2399
> Project: Tapestry 5
> Issue Type: Bug
> Components: tapestry-core
> Affects Versions: 5.4
> Reporter: Felix Scheffer
> Assignee: Howard M. Lewis Ship
> Fix For: 5.4
>
>
> waitForAjaxRequestsToComplete() waits until <body> has an attribute
> {code}
> data-ajax-active=false
> {code}
> which will NEVER be the case when Prototype is being used.
> When an attribute's value is false, Prototype removes that attribute from the
> tag (instead of writing out the value).
> from prototype.js, line 2269:
> {code}
> writeAttribute: function(element, name, value) {
> ...
> if (value === false || value === null)
> element.removeAttribute(name);
> else if (value === true)
> element.setAttribute(name, name);
> else element.setAttribute(name, value);
> ...
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)