本文整理匯總了Java中org.openqa.selenium.support.ui.Select.deselectByValue方法的典型用法代碼示例。如果您正苦於以下問題:Java Select.deselectByValue方法的具體用法?Java Select.deselectByValue怎麽用?Java Select.deselectByValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.openqa.selenium.support.ui.Select
的用法示例。
在下文中一共展示了Select.deselectByValue方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: deselectByValue
import org.openqa.selenium.support.ui.Select; //導入方法依賴的package包/類
@Override
public boolean deselectByValue(Element element, String value)
{
Select select = createSelect(element);
if(select != null)
{
select.deselectByValue(value);
return true;
}
return false;
}
示例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.");
}
}
示例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;
}
}