I am currently utilizing Selenium for automating a test that involves creating an app. The process entails filling out various fields on a webpage and then submitting the form. After submission, a new page appears with an alert message indicating either success or failure. The issue I am encountering is that the alert message is structured within a CSS class as shown below:
<div class="alert-box notice">
Successfully created application
<a href="" class="close">×</a>
</div>
My sole objective is to confirm the presence of the text "Successfully created application" without needing to alter any content.