All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.appium.java_client.MobileElement Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * See the NOTICE file distributed with this work for additional
 * information regarding copyright ownership.
 * 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 io.appium.java_client;

import org.openqa.selenium.By;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.Point;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.remote.FileDetector;

import java.util.ArrayList;
import java.util.List;

@SuppressWarnings({"unchecked"})
public abstract class MobileElement
    extends DefaultGenericMobileElement {

    protected FileDetector fileDetector;

    /**
     * Method returns central coordinates of an element.
     * @return The instance of the {@link org.openqa.selenium.Point}
     */
    public Point getCenter() {
        Point upperLeft = this.getLocation();
        Dimension dimensions = this.getSize();
        return new Point(upperLeft.getX() + dimensions.getWidth() / 2,
            upperLeft.getY() + dimensions.getHeight() / 2);
    }

    @Override public void pinch() {
        ((AppiumDriver) parent).pinch(this);
    }

    @Override public void tap(int fingers, int duration) {
        ((AppiumDriver) parent).tap(fingers, this, duration);
    }

    @Override public void zoom() {
        ((AppiumDriver) parent).zoom(this);
    }


    @Override public void swipe(SwipeElementDirection direction, int duration) {
        direction.swipe((AppiumDriver) parent, this, 0, 0, duration);
    }

    @Override public void swipe(SwipeElementDirection direction, int offsetFromStartBorder,
        int offsetFromEndBorder, int duration) throws IllegalCoordinatesException {
        direction.swipe((AppiumDriver) parent, this, offsetFromStartBorder, offsetFromEndBorder,
            duration);
    }

    @Override public List findElements(By by) {
        return super.findElements(by);
    }

    @Override public List findElementsById(String id) {
        return super.findElementsById(id);
    }

    public List findElementsByLinkText(String using) {
        return super.findElementsByLinkText(using);
    }

    public List findElementsByPartialLinkText(String using) {
        return super.findElementsByPartialLinkText(using);
    }

    public List findElementsByTagName(String using) {
        return super.findElementsByTagName(using);
    }

    public List findElementsByName(String using) {
        return super.findElementsByName(using);
    }

    public List findElementsByClassName(String using) {
        return super.findElementsByClassName(using);
    }

    public List findElementsByCssSelector(String using) {
        return super.findElementsByCssSelector(using);
    }

    public List findElementsByXPath(String using) {
        return super.findElementsByXPath(using);
    }

    @Override public List findElementsByAccessibilityId(String using) {
        List result = new ArrayList();
        List found = findElements("accessibility id", using);
        for (WebElement e : found) {
            result.add((MobileElement) e);
        }
        return result;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy