<div dir="ltr">
<div>Hi</div><div><br></div><div>It's a great job... Qa browser and Vagrant work and now, I try to do some tests for my extension but Ruby is not my friend for the moment. May be can you help me ?</div><div><br></div>
<div>I describe a little example there :</div><div><a href="http://www.mediawiki.org/wiki/Quality_Assurance/Browser_testing/Test_backlog#Table">http://www.mediawiki.org/wiki/Quality_Assurance/Browser_testing/Test_backlog#Table</a></div>
<div><br></div><div>And my class is : </div><div><pre></div><div>class PageResult</div><div>  include PageObject</div><div>  include URL</div><div>  table(:tableResult, class: 'wikitable')</div><div>end </div>
<div></pre></div><div><br></div><div>And the steps :</div><div><pre></div><div>When(/^I enter article table :$/) do |tableWikitext|  </div><div>  on(EditPage).article_text = tableWikitext</div><div>end</div><div>
Then(/^table should be there:$/) do |table|</div><div>  # table is a Cucumber::Ast::Table  </div><div>  tableResult = on(PageResult).tableResult</div><div>  #DRAGON IS THERE ? probably with <a href="http://nokogiri.org/">http://nokogiri.org</a></div>
<div>  # tableResult ??DIFF?? table</div><div>end</div><div></pre></div><div><br></div><div>Can you implement this rules ? It will be a good example for newbies.</div><div><br></div><div>Thanks</div><div>karima</div>
<div><br></div></div>