diff options
author | Teemu Suo-Anttila <tsuoanttila@users.noreply.github.com> | 2017-08-02 09:12:21 +0300 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-08-02 09:12:21 +0300 |
commit | f12a23c9c6bb176dd0550f07d6ddeb1e91c84bfc (patch) | |
tree | 70f177f117b87bcb20d6eb1f3fa46ba45251a976 /testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java | |
parent | 61c3a725bad98b731a8eb6a3186bb66398630022 (diff) | |
download | vaadin-framework-f12a23c9c6bb176dd0550f07d6ddeb1e91c84bfc.tar.gz vaadin-framework-f12a23c9c6bb176dd0550f07d6ddeb1e91c84bfc.zip |
Fix RadioButtonGroup selection updates to client (#9749)
This patch provides a simple fix for the majority of issues. There are still issues that should be fixes by refactoring parts of the logic in AbstractSingleSelect.
This patch does not unify the handling of empty values in the TestBench elements of various AbstractSingleSelects.
Fixes #9494
Diffstat (limited to 'testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java')
-rw-r--r-- | testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java b/testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java index 4feeaae6ff..4cff189ea7 100644 --- a/testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java +++ b/testbench-api/src/main/java/com/vaadin/testbench/elements/RadioButtonGroupElement.java @@ -25,7 +25,7 @@ import com.vaadin.testbench.TestBenchElement; import com.vaadin.testbench.elementsbase.ServerClass; @ServerClass("com.vaadin.ui.RadioButtonGroup") -public class RadioButtonGroupElement extends AbstractSelectElement { +public class RadioButtonGroupElement extends AbstractSingleSelectElement { private static org.openqa.selenium.By bySelectOption = By .className("v-select-option"); |