溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java+Appium自動(dòng)化測(cè)試框架(二) 定位方式

發(fā)布時(shí)間:2020-04-06 16:18:03 來源:網(wǎng)絡(luò) 閱讀:1884 作者:木子耳07 欄目:建站服務(wù)器

package com.appium.test;

/**

* @author YuFeifei

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

* 類說明

* 根據(jù)讀取的配置文件,將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分離出的>前面的數(shù)據(jù)==id、name等*/

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

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

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

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

/**根據(jù)定位類型,返回定位方式*/

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

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未在預(yù)設(shè)程序中被定義:" + locatorType + "請(qǐng)檢查GetByLocatorTest這個(gè)類");

}catch (Exception e){

e.printStackTrace();

}

return null;

}

/**測(cè)試*/

public static void main(String agrs[]){

GetByLocatorTest test2 = new GetByLocatorTest();

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

}


}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI