You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2014/10/11 02:05:34 UTC

[jira] [Assigned] (TAP5-2399) SeleniumTestCase.waitForAjaxRequestsToComplete() not working when using Prototype

     [ https://issues.apache.org/jira/browse/TAP5-2399?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship reassigned TAP5-2399:
------------------------------------------

    Assignee: Howard M. Lewis Ship

> 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
>
> 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)