テストする大きなサイトがあります。クリックするたびに、警告、致命的なエラーなどのページのエラーになる可能性があります。したがって、クリックするたびに、このエラーのページの内部テキスト (または innerHTML) を確認する必要があります。
今、私は1つの大きな正規表現でそれを行います:((?<error>(Warning|Fatal error|Parse error)\:.+?\s+on\s+line\s+\d+)|(?<nac>is not a component)|(?<dberror>(mssql|mysql|oracle)\s+query\s+error:)|(?<404>404 not found)|(?<cannotfind>can not find.*template with page)|(?<exception>exception)|(?<serverError>server error)|(?<isnotinstalled>is not installed))
つまり、この正規表現のすべてのページの内部テキストをチェックします。それは動作しますが、遅いです。他のより高速なソリューションはありますか?