package com.yahoo.dtf.actions.selenium.commands.confirmation; import com.yahoo.dtf.actions.selenium.Selenium; import com.yahoo.dtf.exception.DTFException; /** * @dtf.tag chooseCancelOnNextConfirmation * @dtf.skip.index * * @dtf.since 1.0 * @dtf.author Rodney Gomes * * @dtf.tag.desc <p> * Lets selenium know to automatically cancel on the next * confirmation dialog shown in the current session * </p> */ public class Choosecancelonnextconfirmation extends Selenium { @Override public void execute() throws DTFException { getSelenium().chooseCancelOnNextConfirmation(); } }