中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java+Appium自動化測試框架(二) 定位方式

發布時間:2020-04-06 16:18:03 來源:網絡 閱讀:1885 作者:木子耳07 欄目:建站服務器

package com.appium.test;

/**

* @author YuFeifei

* @version 2017年11月15日 上午11:41:21

* 類說明

* 根據讀取的配置文件,將key和value拆分

* 再通過split將value分成定位類型(locatorType)和元素(locatorValue)

*/

import org.openqa.selenium.By;

public class GetByLocatorTest {

public static By getLocator(String key){

ProUtilTest properties = new ProUtilTest("./configs/test1.properties");

/**屬性locator 是通過key獲取的value*/

String locator = properties.getProp(key);

/**屬性locatorType 獲取的value中通過split分離出的>前面的數據==id、name等*/

String locatorType = locator.split(">")[0];

/**屬性locatorType 獲取的value中通過split分離出的>后面的數據==元素*/

String locatorValue = locator.split(">")[1];

System.out.println("獲取的定位類型:" + locatorType + "\t獲取的元素是:" + locatorValue);

/**根據定位類型,返回定位方式*/

if (locatorType.toLowerCase().equals("id"))//toLowerCase()將大寫字符轉換為小寫

return By.id(locatorValue);

else if (locatorType.toLowerCase().equals("name"))

return By.name(locatorValue);

else if (locatorType.toLowerCase().equals("classname"))

return By.className(locatorValue);

else if (locatorType.toLowerCase().equals("tagname"))

return By.tagName(locatorValue);

else if (locatorType.toLowerCase().equals("linktext"))

return By.linkText(locatorValue);

else if (locatorType.toLowerCase().equals("cssselector"))

return By.cssSelector(locatorValue);

else if (locatorType.toLowerCase().equals("xpath"))

return By.xpath(locatorValue);

else

try{

throw new Exception("輸入的locatorType未在預設程序中被定義:" + locatorType + "請檢查GetByLocatorTest這個類");

}catch (Exception e){

e.printStackTrace();

}

return null;

}

/**測試*/

public static void main(String agrs[]){

GetByLocatorTest test2 = new GetByLocatorTest();

System.out.println(test2.getLocator("LG_NAME_PHONE"));

}


}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

新源县| 娱乐| 称多县| 桦川县| 岑溪市| 临江市| 平舆县| 大关县| 金秀| 定结县| 门源| 烟台市| 安义县| 五大连池市| 陆丰市| 十堰市| 凌海市| 石景山区| 琼结县| 揭西县| 丽水市| 沙田区| 宜章县| 兴隆县| 仙桃市| 乌鲁木齐市| 沙洋县| 宜兰市| 四平市| 沾化县| 措勤县| 永福县| 宁远县| 遂宁市| 陆丰市| 昌宁县| 遂溪县| 资溪县| 手游| 个旧市| 哈尔滨市|