Site crushes when trying to find large amount of selectors with attributes to exclude
dbarlev1 opened this issue · 1 comments
dbarlev1 commented
This is occur to me in many sites, when there is large amount of selectors to generate (more the 2000) it crushes.
my conclusion is that it cause by excluding values and names in the attributes.
the new property of "maxNumberOfTries" doesn't help.
Example of my code for the exclude attributes.
excludeByAtributeName=["style", "ng", "on","event"];
excludeAttributeValue=["@","?","$","#","~","&","%","^","*","alert","console.log","confirm"];
attr: (name: string, value: string) =>
!excludeByAtributeName
.some(a => name.includes(a)) &&
!excludeAttributeValue
.some(c => value.includes(c))
antonmedv commented
Please attach example html file and what element do you trying generate it for.