在HTML

时间:2015-10-12 16:37:57

标签: java selenium automation

我一直试图选择这个WebElement。它是我测试的Web应用程序首页上的注册按钮。我想知道,有没有一种方法可以用来在HTML中抓取文本来定义WebElement?



<div>
  <div>
    <div style="">
      <div style="transform: translate(0px, 0px) scale(0.5, 0.5) rotate(0deg);">
        <div role="img">
          <img src="images/lsloginform/newskin/try_it_normal.png?1444658058414">
        </div>
      </div>
      <div style="transform: translate(0px, 75px) scale(1, 1) rotate(0deg);">
        <canvas height="7" width="75" style="top: 0px; left: 0px; width: 75px; height: 7px;"></canvas>
      </div>
      <div style="transform: translate(0px, 82px) scale(1, 1) rotate(0deg);">
        <div style="font-family: franklin-gothic-ext-comp-urw; font-weight: 700; font-style: normal; font-size: 15px; opacity: 1; color: rgb(63, 63, 63); transform: translate(7px, 0px) scale(1, 1) rotate(0deg);">SIGN&nbsp;UP</div>
      </div>
    </div>
    <div style="display: none;"></div>
    <div style="display: none;">
      <div style="transform: translate(0px, 0px) scale(0.5, 0.5) rotate(0deg);">
        <div role="img">
          <img src="images/lsloginform/newskin/try_it_MO.png?1444665385167">
        </div>
      </div>
      <div style="transform: translate(0px, 75px) scale(1, 1) rotate(0deg);">
        <canvas height="7" width="75" style="top: 0px; left: 0px; width: 75px; height: 7px;"></canvas>
      </div>
      <div style="transform: translate(0px, 82px) scale(1, 1) rotate(0deg);">
        <div style="font-family: franklin-gothic-ext-comp-urw; font-weight: 700; font-style: normal; font-size: 15px; opacity: 1; color: rgb(63, 63, 63); transform: translate(7px, 0px) scale(1, 1) rotate(0deg);">SIGN&nbsp;UP</div>
      </div>
      <div></div>
    </div>
    <div style="display: none;"></div>
    <div style="display: none;"></div>
  </div>
</div>
&#13;
&#13;
&#13;

具体的例子,我喜欢使用&#34; SIGN UP&#34;的上述div的xpath。 HTML末尾的文本。我该怎么做呢?

我测试的应用程序非常挑剔,并且能够通过该属性进行选择将使我的生活更轻松。这是一个问题的原因是因为我需要3种不同的抓取xpath的方法:一个用于按钮正常,一个用于悬停,另一个因为按钮在点击时瞬间改变。我的大多数自动化脚本都类似于:

    public class changeLanguageLogin {
        public void run(WebDriver driver) {
            WebElement changeLanguage = getWebElement(driver, "xpath", "img", "src", "select_application_language_normal");
            Actions actions = new Actions(driver);
            actions.moveToElement(changeLanguage).build().perform();
            WebElement changeLanguageMO = getWebElement(driver, "xpath", "img", "src", "select_application_language_hover");
            changeLanguageMO.click();
            WebElement changeLanguageClicked = getWebElement(driver, "xpath", "img", "src", "select_application_language_pushed");
            changeLanguageClicked.click();
        }


      private static By buildXPathExpression(String htmlElement, String attributeName, String attributeValue)
      {
          return By.xpath("//"+htmlElement+"[contains(@"+attributeName+",'"+attributeValue+"')]");
      }

      private static By buildCSSExpression(String htmlElement, String attributeName, String attributeValue)
      {
          return By.cssSelector(""+htmlElement+"["+attributeName+"='"+attributeValue+"']");
      }

      private static WebElement getWebElement(WebDriver driver, String operation, String htmlElement, String attributeName, String attributeValue)
      {
          By byObj = null;
          WebElement webElementObj = null;
          if(operation!= null)
          {
              if(operation.equals("xpath"))
              {
                  byObj = buildXPathExpression(htmlElement,attributeName,attributeValue);
              }
              else if(operation.equals("cssSelector"))
              {
                  byObj = buildCSSExpression(htmlElement,attributeName,attributeValue);
              }
          }
          if(byObj != null)
          {
              webElementObj = driver.findElement(byObj);
          }

          return webElementObj;
      }
}

每天很多次,一种简单定义xpath的方法不会起作用&#34;我不得不四处寻找另一个。目标是不使用任何&#34;硬编码&#34; xpaths,因为当我开始工作时这是有问题的。

所以我正在寻找答案:用HTML中的文字定义一个xpath,&#34; SIGN UP&#34;。

2 个答案:

答案 0 :(得分:1)

  

如果您只受 xpath 或绑定,则此响应无效    css 查找。

选项1

如果您愿意在辅助方法中添加另一个案例,我认为 By.linkText 可能会做您想要的事情吗?

  /**
   * @param linkText The exact text to match against
   * @return a By which locates A elements by the exact text it displays
   */
  public static By linkText(final String linkText) {
    if (linkText == null)
      throw new IllegalArgumentException(
          "Cannot find elements when link text is null.");

    return new ByLinkText(linkText);
  }

或者可能 By.partialLinkText

  /**
   * @param linkText The text to match against
   * @return a By which locates A elements that contain the given link text
   */
  public static By partialLinkText(final String linkText) {
    if (linkText == null)
      throw new IllegalArgumentException(
          "Cannot find elements when link text is null.");

    return new ByPartialLinkText(linkText);
  }

如果您正在测试已经国际化的系统,这可能会成为一个问题。根据环境,用户/浏览器的区域设置将更改您要查找的文本。

如果文本发生变化,这也可能是一个维护问题。

选项2

如果您可以控制HTML,则可以考虑将id添加到页面上的元素中。然后,您可以使用 By.id 查找。从我的一些初步研究中,元素id被视为更可靠和一致的路径之一。

/**
   * @param id The value of the "id" attribute to search for
   * @return a By which locates elements by the value of the "id" attribute.
   */
  public static By id(final String id) {
    if (id == null)
      throw new IllegalArgumentException(
          "Cannot find elements with a null id attribute.");

    return new ById(id);
  }

选项3

我的最终建议是尝试实施您自己的查找。我不愿建议查找的实现,但如果你需要这种行为,那么你应该意识到你可能创建一个子类来做你想要的。

最好的运气。

答案 1 :(得分:1)

对于旧时间inlie style css,你生成的css选择器取决于为"div[style*='paste_style_attribute']"这样的div编写的样式。然而,由于重复相同的风格,这种方法是不可靠的。

对于以下div:

<div style="font-family: franklin-gothic-ext-comp-urw; font-weight: 700; font-style: normal; font-size: 15px; opacity: 1; color: rgb(63, 63, 63); transform: translate(7px, 0px) scale(1, 1) rotate(0deg);">SIGN&nbsp;UP</div>

您可以生成以下css选择器:

"div[style*='font-family: franklin-gothic-ext-comp-urw; font-weight: 700; font-style: normal; font-size: 15px; opacity: 1; color: rgb(63, 63, 63); transform: translate(7px, 0px) scale(1, 1) rotate(0deg);']"

Java代码:

driver.findElement(By.cssSelector("div[style*='font-family: franklin-gothic-ext-comp-urw; font-weight: 700; font-style: normal; font-size: 15px; opacity: 1; color: rgb(63, 63, 63); transform: translate(7px, 0px) scale(1, 1) rotate(0deg);']"))