/* * 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.android.bootstrap.utils; import com.android.uiautomator.core.UiSelector; /** * Simple class for holding a String 2-tuple. An android class, and instance number, used for finding elements by xpath. */ public class ClassInstancePair { private String androidClass; private String instance; public ClassInstancePair(String clazz, String inst) { androidClass = clazz; instance = inst; } public String getAndroidClass() { return androidClass; } public String getInstance() { return instance; } public UiSelector getSelector() { String androidClass = getAndroidClass(); String instance = getInstance(); return new UiSelector().className(androidClass).instance(Integer.parseInt(instance)); } }