You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SliderElement.java 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright 2000-2016 Vaadin Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  5. * use this file except in compliance with the License. You may obtain a copy of
  6. * the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  12. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  13. * License for the specific language governing permissions and limitations under
  14. * the License.
  15. */
  16. package com.vaadin.testbench.elements;
  17. import java.util.List;
  18. import org.openqa.selenium.WebElement;
  19. import org.openqa.selenium.remote.BrowserType;
  20. import com.vaadin.testbench.By;
  21. import com.vaadin.testbench.elementsbase.ServerClass;
  22. @ServerClass("com.vaadin.ui.Slider")
  23. public class SliderElement extends AbstractFieldElement {
  24. /**
  25. * Get value of the slider
  26. *
  27. * Warning! This method cause slider popup to appear on the screen. To hide
  28. * this popup just focus any other element on the page.
  29. */
  30. public String getValue() {
  31. List<WebElement> popupElems = findElements(By.vaadin("#popup"));
  32. // SubPartAware was implemented after 7.2.6, not sure in which release
  33. // it will be included
  34. if (popupElems.isEmpty()) {
  35. throw new UnsupportedOperationException(
  36. "Current version of vaadin doesn't support geting values from sliderElement");
  37. }
  38. WebElement popupElem = popupElems.get(0);
  39. if (BrowserType.IE.equals(getCapabilities().getBrowserName())
  40. && "8".equals(getCapabilities().getVersion())) {
  41. return popupElem.getAttribute("innerText");
  42. } else {
  43. return popupElem.getAttribute("textContent");
  44. }
  45. }
  46. public WebElement getHandle() {
  47. return findElement(By.className("v-slider-handle"));
  48. }
  49. }