org.sitoolkit.wt.domain.operation.selenium.ChooseOperation Maven / Gradle / Ivy
/*
* Copyright 2013 Monocrea Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.sitoolkit.wt.domain.operation.selenium;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.commons.lang3.StringUtils;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.sitoolkit.wt.domain.evidence.MessagePattern;
import org.sitoolkit.wt.domain.testscript.Locator;
import org.sitoolkit.wt.domain.testscript.TestStep;
import org.springframework.stereotype.Component;
/**
* このクラスは、ラジオボタンとチェックボックスの選択操作を行います。 使用例として、チェックボックス初期状態と
* テストデータで定義された操作を実行した後の状態を以下に示します。
*
*
* ケース1:off→on
* 初期状態
* □運動 □芸術 □仕事
*
* テストデータ
* 運動;仕事
*
* 操作後状態
* ■運動 □芸術 ■仕事
*
* ケース2:on→on テストデータに定義する
* 初期状態
* ■運動 □芸術 □仕事
*
* テストデータ
* 運動;仕事
*
* 操作後状態
* ■運動 □芸術 ■仕事
*
* ケース3:on→on テストデータに定義しない
* 初期状態
* □運動 ■芸術 □仕事
*
* テストデータ
* 運動;仕事
*
* 操作後状態
* ■運動 ■芸術 ■仕事
*
* ケース4:on→off
* 初期状態
* ■運動 □芸術 □仕事
*
* テストデータ
* 運動_off;仕事
*
* 操作後状態
* □運動 □芸術 ■仕事
*
*
*
* @author yuichi.kuwahara
*/
@Component
public class ChooseOperation extends SeleniumOperation {
@Override
public void execute(TestStep testStep, SeleniumOperationContext ctx) {
String[] values = testStep.getValues();
ctx.info(MessagePattern.項目にXXをYYします, Arrays.asList(values), "選択");
Map map = toMap(values);
List elements = null;
if ("label".equals(testStep.getDataType())) {
elements = chooseByLabel(ctx, testStep.getLocator(), map);
} else {
elements = chooseByValue(ctx, testStep.getLocator(), map);
}
ctx.addOperatedElement(elements);
}
protected List chooseByLabel(SeleniumOperationContext ctx, Locator locator,
Map map) {
List elements = new ArrayList<>();
for (WebElement element : findElements(locator)) {
String id = element.getAttribute("id");
WebElement label = seleniumDriver
.findElement(By.cssSelector("label[for='" + id + "']"));
String labelText = StringUtils.trim(label.getText());
Choice choice = map.get(labelText);
if (choice == null) {
continue;
}
if (setChecked(element, label, choice.on)) {
elements.add(element);
}
}
return elements;
}
protected List chooseByValue(SeleniumOperationContext ctx, Locator locator,
Map map) {
List elements = new ArrayList<>();
for (WebElement element : findElements(locator)) {
String value = element.getAttribute("value");
Choice choice = map.get(value);
if (choice == null) {
continue;
}
if (setChecked(element, element, choice.on)) {
elements.add(element);
}
}
return elements;
}
protected Map toMap(String[] values) {
Map map = new HashMap();
for (String value : values) {
Choice choice = new Choice();
int idx = value.indexOf("_off");
if (idx < 0) {
choice.value = value;
choice.on = true;
} else {
choice.value = value.substring(0, idx);
choice.on = false;
}
map.put(choice.value, choice);
}
return map;
}
protected class Choice {
protected String value;
protected boolean on;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy