當前位置: 首頁>>代碼示例>>Java>>正文


Java Select.deselectByVisibleText方法代碼示例

本文整理匯總了Java中org.openqa.selenium.support.ui.Select.deselectByVisibleText方法的典型用法代碼示例。如果您正苦於以下問題:Java Select.deselectByVisibleText方法的具體用法?Java Select.deselectByVisibleText怎麽用?Java Select.deselectByVisibleText使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.openqa.selenium.support.ui.Select的用法示例。


在下文中一共展示了Select.deselectByVisibleText方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: deselectByText

import org.openqa.selenium.support.ui.Select; //導入方法依賴的package包/類
@Override
public boolean deselectByText(Element element, String text)
{
	Select select = createSelect(element);
	if(select != null)
	{
		select.deselectByVisibleText(text);
		return true;
	}

	return false;
}
 
開發者ID:LinuxSuRen,項目名稱:phoenix.webui.framework,代碼行數:13,代碼來源:SeleniumSelect.java

示例2: run

import org.openqa.selenium.support.ui.Select; //導入方法依賴的package包/類
@Override
public void run() {
    super.run();

    By locator = this.readLocatorArgument("locator");
    String optionValue = this.readStringArgument("optionValue", null);
    String optionText = this.readStringArgument("optionText", null);
    Integer optionNumber = this.readIntArgument("optionNumber", null);

    this.waitForAsyncCallsToFinish();

    Select dropdownElement = new Select(this.getElement(locator));

    if (optionValue != null) {
        dropdownElement.deselectByValue(optionValue);
    } else if (optionText != null) {
        dropdownElement.deselectByVisibleText(optionText);
    } else if (optionNumber != null) {
        dropdownElement.deselectByIndex(optionNumber - 1);
    } else {
        throw new RuntimeException(
                "You must identify the option you want to deselect from the "
                + "list by providing one of the following arguments: "
                + "optionValue, optionText or optionIndex.");
    }

}
 
開發者ID:mcdcorp,項目名稱:opentest,代碼行數:28,代碼來源:DeselectListOption.java

示例3: deSelect

import org.openqa.selenium.support.ui.Select; //導入方法依賴的package包/類
private void deSelect(Select select, String Data, SelectBy selectBy) {
    switch (selectBy) {
        case Index:
            select.deselectByIndex(Integer.parseInt(Data));
            break;
        case Text:
            select.deselectByVisibleText(Data);
            break;
        case Value:
            select.deselectByValue(Data);
            break;
    }

}
 
開發者ID:CognizantQAHub,項目名稱:Cognizant-Intelligent-Test-Scripter,代碼行數:15,代碼來源:Dropdown.java


注:本文中的org.openqa.selenium.support.ui.Select.deselectByVisibleText方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。