Webdriver to determine if alert exists

Source: Internet
Author: User

The

can be used to determine if alert exists, and to test it via Java code    public boolean isalertpresent () {     IE8        try           {                driver.switchto (). alert ();                return true;            }               catch  (Noalertpresentexception ex)             {               return  false;           }     

Use the following method to get the Message:java code public String Getalert () {Alert alert = Driver.switchto (). alert ();            String str = Alert.gettext ();         Alert.accept ();     return str; }

When an indeterminate number of alert is about to appear on the page, you can use a while or a for loop to turn off all alert Java code while (Isalertpresent ()) {Driver.switchto (). alert ().           Accept ();          Pause (3000); }

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.