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

io.selendroid.server.model.AndroidRElement Maven / Gradle / Ivy

/*
 * Copyright 2012-2013 eBay Software Foundation and selendroid committers.
 * 
 * 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 io.selendroid.server.model;

import io.selendroid.android.internal.Dimension;
import io.selendroid.android.internal.Point;
import io.selendroid.server.model.interactions.Coordinates;

import java.util.Collection;
import java.util.List;
import java.util.NoSuchElementException;

public class AndroidRElement implements AndroidElement {
  
  public Integer id;

  private static final String NOT_IMPLEMENTED_ERROR_MSG =
      "Android R Element is only a placeholder for an id, you need to find a real element";
  
  public AndroidRElement(int id) {
    this.id = id;  
  }
  
  @Override
  public AndroidElement getParent() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public Collection getChildren() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public AndroidElement findElement(By by) throws NoSuchElementException {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public List findElements(By by) throws NoSuchElementException {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public void enterText(CharSequence... keysToSend) {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public String getText() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public void click() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public void submit() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public boolean isSelected() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public boolean isDisplayed() {
    return false;
  }

  @Override
  public boolean isEnabled() {
    return false;
  }

  @Override
  public void clear() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public Point getLocation() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public Coordinates getCoordinates() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public Dimension getSize() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public String getAttribute(String name) {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public String getTagName() {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public void setText(CharSequence... keysToSend) {
    throw new RuntimeException(NOT_IMPLEMENTED_ERROR_MSG);
  }

  @Override
  public String id() {
    return String.valueOf(id);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy