2

在我添加测试的项目中,我有一些复杂的“获取”元素。
我的 textarea 的 html :

<div class="quote">        
 <div class="clearfix">          
  <div class="icon"></div>            
   <div class="text">
    <span class="yui3-widget yui3-inputwidget yui3-textareawidget yui3-textareawidget-focused" style="">
     <span class="yui3-textareawidget-content">
      <textarea name="" placeholder=""></textarea>
     </span>
    </span>
   </div>        
   <div class="author">
    (...) other text_field 
   </div>
  </div>        
 </div>    
</div>

目前,我使用这条线来设置值

@browser.element(:css => ".quote textarea").send_keys "test"

在 PageObject 中,我应该声明元素并使用它:

# declaration at the top
element(:quote_text, :css => ".quote textarea") 
# use it where I need
self.quote_text = "text"

但是当我使用时出现此错误:

undefined method `quote_text=' for #<PublishPage:0x33843c0> (NoMethodError)

我哪里错了?

4

2 回答 2

5

When you do element(:quote_text, :css => ".quote textarea"), it will only generate the methods (see doc):

quote_text #Returns the text of the element
quote_text_element #Returns the element
quote_text? #Returns if the element exists

Since you know it is a text area and want the text area methods, you should declare it as:

text_area(:quote_text, :css => ".quote textarea") 

This will give you the quote_text= method you expect (see doc).

Update - Since Watir-Webdriver only support css-selectors at the element class (see Issue 124), you will also need to change the locator. Two alternative declarations for quote_text that seem to work:

#Using a block to locate the element:
text_area(:quote_text){ div_element(:class => "quote").text_area_element }

#Using xpath:
text_area(:quote_text, :xpath => '//div[@class="quote"]//textarea') 
于 2012-09-21T14:52:30.267 回答
0

我认为您不需要self那里(但我可能是错的)。

尝试这个

quote_text = "text"

代替

self.quote_text = "text"
于 2012-09-21T13:51:25.583 回答