Skip to content

Commit

Permalink
Fixing that invalid HTML tripped requests to /Settings/general after …
Browse files Browse the repository at this point in the history
…a Chrome update
  • Loading branch information
Piedone committed Aug 22, 2024
1 parent ec68639 commit 0f4944f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ public class OrchardCoreUITestExecutorConfiguration
!logEntry.Message.ContainsOrdinalIgnoreCase("HTML Imports is deprecated") &&
// The 404 is because of how browsers automatically request /favicon.ico even if a favicon is declared to be
// under a different URL.
!logEntry.IsNotFoundLogEntry("/favicon.ico");
!logEntry.IsNotFoundLogEntry("/favicon.ico") &&
// Workaround for https://github.com/OrchardCMS/OrchardCore/issues/16606.
!(logEntry.Message.ContainsOrdinalIgnoreCase("/Settings/general") &&
logEntry.Message.ContainsOrdinalIgnoreCase("A em tag was parsed inside of a <select> which was not inserted into the document."));

/// <summary>
/// Gets the global events available during UI test execution.
Expand Down

1 comment on commit 0f4944f

@Piedone
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sarahelsaig please revert this in NEST-536.

Please sign in to comment.