com.axway.ats.uiengine.elements.html.realbrowser.RealHtmlAlert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ats-uiengine Show documentation
Show all versions of ats-uiengine Show documentation
ATS UI Engine library for performing tests over Web applications (HTML/JavaScript), mobile (Android and
iOS) and Swing
/*
* Copyright 2017 Axway Software
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.axway.ats.uiengine.elements.html.realbrowser;
import com.axway.ats.common.PublicAtsApi;
import com.axway.ats.uiengine.AbstractRealBrowserDriver;
import com.axway.ats.uiengine.UiDriver;
import com.axway.ats.uiengine.configuration.UiEngineConfigurator;
import com.axway.ats.uiengine.elements.html.HtmlAlert;
import com.axway.ats.uiengine.exceptions.VerificationException;
import com.axway.ats.uiengine.internal.realbrowser.ExpectedAlert;
import com.axway.ats.uiengine.utilities.UiEngineUtilities;
/**
* An HTML Alert
*/
@PublicAtsApi
public class RealHtmlAlert extends HtmlAlert {
private AbstractRealBrowserDriver driver;
private ExpectedAlert expectedAlert;
public RealHtmlAlert( UiDriver uiDriver ) {
super( uiDriver );
driver = ( ( AbstractRealBrowserDriver ) super.getUiDriver() );
}
@Override
@PublicAtsApi
public void clickOk() {
expectedAlert = new ExpectedAlert( null );
driver.addExpectedPopup( expectedAlert );
}
@Override
@PublicAtsApi
public void clickOk(
String expectedAlertText ) {
expectedAlert = new ExpectedAlert( expectedAlertText );
driver.addExpectedPopup( expectedAlert );
}
@Override
@PublicAtsApi
public void verifyProcessed() {
long millis = UiEngineConfigurator.getInstance().getElementStateChangeDelay();
long endTime = System.currentTimeMillis() + millis;
do {
if( !driver.containsExpectedPopup( expectedAlert ) ) {
return;
}
UiEngineUtilities.sleep();
} while( endTime - System.currentTimeMillis() > 0 );
throw new VerificationException( "Failed to verify the Alert is processed within " + millis + " ms" );
}
}