尝试从Watir-Webdriver中的自定义属性中选择一个单选按钮

时间:2014-02-14 01:11:55

标签: ruby watir watir-webdriver custom-attribute

尝试这种方式不可能吗?我添加了代码以扩展允许自定义选择器的功能:

module Watir
  class ElementLocator    
    alias :old_normalize_selector :normalize_selector

    def normalize_selector(how, what)
      case how
        when :data_sku
          [how, what]
        else
          old_normalize_selector(how, what)
      end
    end
  end
end

这是我的代码试图从随机数组中选择它。即使中间两行没有注释,我仍然会出错。

$monthlydata = ["GC311Z-02","GC307Z-02","GC308Z-02","GC309Z-02","GC310Z-02"].sample
#Watir::Wait.until { @b.radio(:data_sku, $monthlydata) }
#@b.radio(:xpath, "//input[@data_sku='$monthlydata']").exists?
@b.radio(:xpath, "//input[@data_sku='$monthlydata']").set **(line causing the error)**

我得到的错误是UnknownObjectException:无法定位元素。抛出错误的行是显示的最后一行。

更新

我的更新代码获取超时错误:

    if @b.url == "http://www.website.com/cart/plans?ProductId=product"
        $monthlydata = ["GC311Z-02","GC307Z-02","GC308Z-02","GC309Z-02","GC310A-02"].sample
        assert @b.radio(:data_sku, $monthlydata).when_present.set
    end

    $monthlymin = ["GC504Z","GC505Z","GC506Z","GC507Z","GC508Z"].sample
    assert @b.radio(:data_sku, $monthlymin).when_present.set

    $monthlytxt = ["GC313Z-02","GC314Z-02","GC315Z-02","GC316Z-02","GC320Z-02"].sample
    assert @b.radio(:data_sku, $monthlytxt).when_present.set

堆栈跟踪:

Error: test_goproject(TestShoppingCart)

  Watir::Wait::TimeoutError: timed out after 30 seconds, waiting for {:data_sku=
>"GC309Z-02", :tag_name=>"input", :type=>"radio"} to become present

C:/Ruby193/lib/ruby/gems/1.9.1/gems/watir-webdriver-0.6.7/lib/watir-webdriver/wa
it.rb:33:in `until'

C:/Ruby193/lib/ruby/gems/1.9.1/gems/watir-webdriver-0.6.7/lib/watir-webdriver/wa
it.rb:106:in `method_missing'

C:/Users/User.Name/Downloads/shoppingcart2.rb:95:in `test_goproject'

     92:
     93:                if @b.url == "http://www.website.com/cart/plans?ProductId=product"
     94:                        $monthlydata = ["GC311Z-02","GC307Z-02","GC308Z-
02","GC309Z-02","GC310Z-02"].sZmple
  => 95:                        assert @b.radio(:data_sku, $monthlydZtZ).when_pr
esent.set
     96:                end
     97:
     98:                $monthlymin = ["GC504Z","GC505Z","GC506Z","GC507Z","GC50
8Z"].sample

1 个答案:

答案 0 :(得分:1)

我认为你网页上的单选按钮有html:

<input type="radio" data-sku="GC311Z-02" />

解决方案1 ​​ - 数据属性定位器

Watir已经支持通过自定义数据属性定位元素。无需对normalize_selector方法进行任何修补。

您正确定义了数据属性定位器:

@b.radio(:data_sku, $monthlydata)

但是,行:

Watir::Wait.until { @b.radio(:data_sku, $monthlydata) }

不会做你所期望的。 Watir::Wait.until将等待块计算结果为true。第@b.radio(:data_sku, $monthlydata)行将返回一个truthy值,因为它返回一个Watir元素对象(尚未找到的对象)。因此,等待从不等待。该块需要验证该元素是否存在:

Watir::Wait.until { @b.radio(:data_sku, $monthlydata).present? }

尽管如此,你可以将其缩短为:

@b.radio(:data_sku => $monthlydata).wait_until_present

或者因为你想设置单选按钮:

@b.radio(:data_sku => $monthlydata).when_present.set

解决方案2 - Xpath

虽然我不建议在这种情况下使用xpath路由,但这是可能的。这条线的原因是:

@b.radio(:xpath, "//input[@data_sku='$monthlydata']").set

失败的是$monthlydata未正确插入。如上所述,xpath表示要查找值为“$ monthlydata”的data-sku属性(不是随机选择的值)。

您需要执行string interpolation,以便$monthlydata实际解释而不是文字。同样,xpath需要@data-sku而不是@data_sku

@b.radio(:xpath, "//input[@data-sku='#{$monthlydata}']").when_present.set