You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@simoami That actually looks like a separate issue. Can you file a new issue with a full description of what you're seeing?
The cache issue does involve chaining, however in a different context:
var foo = F('.foo'); //some element with class "foo" exists on the page, so the collection is length === 1
$('.foo').remove(); //some action that removes the element from the DOM
foo.missing(); //since the element is gone, this should pass the assertion, however the cached collection still has length === 1. missing() and other waits will need to re-query the DOM for $('.foo')
Hi @alexisabril
My bad, false alert here. I was testing FuncUnit against ExtJS and realized that buttons are disabled by a class selector, not but dom attribute...A style class that makes the button look as if it was set to disabled.
No description provided.
The text was updated successfully, but these errors were encountered: