
com.github.wasiqb.coteafs.appium.device.DeviceElementVerify Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appium Show documentation
Show all versions of appium Show documentation
Robust Automation Framework wrapped over Appium.
The newest version!
/*
* Copyright (c) 2017, Wasiq Bhamla.
*
* 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.github.wasiqb.coteafs.appium.device;
import static com.google.common.truth.Truth.assertThat;
import io.appium.java_client.AppiumDriver;
import io.appium.java_client.MobileElement;
import io.appium.java_client.TouchAction;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
/**
* @param
* @param
* @param
*
* @author wasiq.bhamla
* @since 19-May-2017 9:57:58 PM
*/
public class DeviceElementVerify, E extends Device, T extends TouchAction> {
private static final Logger log = LogManager.getLogger ();
private final DeviceElementActions actions;
/**
* @param actions Actions instance
*
* @author wasiq.bhamla
* @since 19-May-2017 9:59:32 PM
*/
public DeviceElementVerify (final DeviceElementActions actions) {
this.actions = actions;
}
/**
* @author wasiq.bhamla
* @since 19-May-2017 10:07:53 PM
*/
public void shouldBeDisabled () {
log.info ("Verifying if element is disabled...");
assertThat (this.actions.enabled ()).isFalse ();
}
/**
* @author wasiq.bhamla
* @since 19-May-2017 10:08:28 PM
*/
public void shouldBeDisplayed () {
log.info ("Verifying if element is displayed...");
assertThat (this.actions.visible ()).isTrue ();
}
/**
* @author wasiq.bhamla
* @since 19-May-2017 10:07:22 PM
*/
public void shouldBeEnabled () {
log.info ("Verifying if element is enabled...");
assertThat (this.actions.enabled ()).isTrue ();
}
/**
* @author wasiq.bhamla
* @since 20-May-2017 12:24:26 PM
*/
public void shouldNotBeDisplayed () {
log.info ("Verifying if element is not displayed...");
assertThat (this.actions.visible ()).isFalse ();
}
/**
* @param expected Expected value
*
* @author wasiq.bhamla
* @since 20-May-2017 12:39:27 PM
*/
public void textShouldBeEqualTo (final String expected) {
log.info ("Verifying if element text is equal to [{}]...", expected);
assertThat (this.actions.text ()).isEqualTo (expected);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy