WebElement >> existScriptForEvent: anEventString
| eventPattern |
eventPattern := '*aidaEvent(''', anEventString, '*'.
self attributes isNil ifTrue: [^false].
self attributes do: [:attribute |
attribute value class = OrderedCollection
ifFalse: [(eventPattern match: attribute value) ifTrue:
[^true]]
ifTrue: [(attribute value contains: [:attr |
eventPattern match: attr]) ifTrue: [^true] ] ].
^false
This fails if an attribute is a ByteString with DNU 'value'.
Is there likely to be a problem with adding a 'value' method to
String which returns '^self' ? It works so far.
FYI ... I have loaded the latest Swazoo and Aida 6.3 and everything
seems to work as expected.
Regards
Nicholas
_______________________________________________
Aida mailing list
[hidden email]
http://lists.aidaweb.si/mailman/listinfo/aida