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

溫馨提示×

溫馨提示×

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

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

APP自動化框架學習:讀取配置文件,并判斷定位方式

發布時間:2020-06-26 01:18:33 來源:網絡 閱讀:435 作者:小白菜鳥1 欄目:建站服務器

思路:

1,創建一個配置文件,配置文件內寫入 "元素的名稱=定位的方式>元素的id/name/xpath表達式",例:"locator=name>登錄"

2,創建個讀取配置文件的類ProUtilTest ,使用java中的Properties類,讀取Java的配置文件

3,判斷定位的方式,使用split()方法取出"locator=name>登錄"中的“name”和“登錄”

4,對split()方法取出來的定位方式,進行判斷,返回相應的By類型,用于之后的定位元素

5,繼續學習完善中。。。


/**判斷定位方式工具類*/
public class GetByLoctorTest {
    
    /**
     *讀取配置文件
     *@param key String 定位方式
     * */
    public static By getLocator(String key){
        
        //ProUtilTest類是讀取配置文件的(見下文的圖),使用構造方法時,需傳入配置文件的路徑
        //文件的路徑可以單獨寫一個類,進行配置
        ProUtilTest properties = new ProUtilTest("configs/login.properties");
        
        //從屬性配置文件中讀取相應的配置對象
        //配置文件寫的格式:"locator=name>登錄"
        String locator = properties.getPro(key);
        
        //將配置對象中的定位類型存在locatorType變量,將定位表達式的值存入到locatorValue變量
        //[0]為>的左邊 [1]為>的右邊
        String locatorType = locator.split(">")[0];//取出>前的name
        String locatorValue = locator.split(">")[1];//取出登錄
        
        //輸出locatorType變量值和locatorValue變量值,驗證是否賦值成功
        System.out.println("獲取的定位類型:"+locatorType+"獲取的定位表達式:"+locatorValue);
        
        //根據locatorType的變量值內容判斷,返回何種定位方式的By對象
        //toLowerCase() 方法用于把字符串轉換為小寫
        if(locatorType.toLowerCase().equals("id")){
            return By.id(locatorValue);
        }else if(locatorType.toLowerCase().equals("name")){
            return By.name(locatorValue);
        }else if ((locatorType.toLowerCase().equals("classname")) || (locatorType.toLowerCase().equals("class"))){
            return By.className(locatorValue);
        }else if((locatorType.toLowerCase().equals("tagname")) || (locatorType.toLowerCase().equals("tag"))){
            return By.className(locatorValue);
        }else if ((locatorType.toLowerCase().equals("linktext")) || (locatorType.toLowerCase().equals("link"))){
            return By.linkText(locatorValue);
        }else if (locatorType.toLowerCase().equals("partiallinktext")){
            return By.partialLinkText(locatorValue);
        }else if ((locatorType.toLowerCase().equals("cssselector")) || (locatorType.toLowerCase().equals("css"))){
            return By.cssSelector(locatorValue);
        }else if (locatorType.toLowerCase().equals("xpath")){
            return By.xpath(locatorValue);
        }else{
            try{
                throw new Exception("輸入的 locator type 未在程序中被定義:" + locatorType);    
            }catch(Exception e){
                e.printStackTrace();
            }
        }
        return null;
        
    }
}




/**配置文件讀取類*/
public class ProUtilTest {
    
    private String filePath;
    private Properties prop;//Properties類,讀取Java的配置文件
    
    public ProUtilTest(String filePath){
        this.filePath = filePath;
        this.prop=readProperties();
    }
    
    public Properties readProperties(){
        Properties properties = new Properties();
        
        try {
            InputStream ins = new FileInputStream(filePath);
            BufferedReader bf=new BufferedReader(new InputStreamReader(ins,"utf-8"));
            properties.load(bf);
            ins.close();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        return properties;    
        
    }
    
    //containsKey()判斷是否有相對應的key
    public String getPro(String key){
        if(prop.containsKey(key)){
            return prop.getProperty(key);
        }else{
            System.out.println("獲取的鍵不存在");
        }
        return "";
    }

向AI問一下細節

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

AI

道孚县| 正阳县| 蒙自县| 伊金霍洛旗| 西宁市| 土默特左旗| 砀山县| 巴林左旗| 卢湾区| 山阴县| 新民市| 梁河县| 从化市| 北川| 东源县| 阿巴嘎旗| 齐河县| 南岸区| 鹿泉市| 阿城市| 磐安县| 南丰县| 永州市| 汕尾市| 平武县| 江油市| 柞水县| 麻江县| 丹棱县| 金寨县| 任丘市| 河北区| 阿合奇县| 洛浦县| 宝丰县| 和龙市| 嫩江县| 阜新| 田阳县| 五原县| 华宁县|