2014-02-10 1 views
-4

watirwebdriver를 사용할 때 몇 가지 질문이 생기고 테이블에서 하나를 선택할 수 없으며 두 번 클릭하면 다른 사람이 나를 도울 수 있습니까? 당신의 anwser에 기대하십시오. 당신이 이런 일을 할 수있는 테이블의 행을 더블 클릭하려고하는 경우 더블 클릭하려고하지만,하는 항목어떻게 watirwebdriver 테이블에서 하나를 선택할 수 있습니까?

<table id="customerName_dataTableLov" class="dataTable" style=""> 
<thead> 
<tr role="row"> 
</thead> 
<tbody role="alert" aria-live="polite" aria-relevant="all"> 
<tr class="odd"> 
<tr class="even"> 
<tr class="odd"> 
<tr class="even">`` 
<tr class="odd"> 
<tr class="even"> 
<tr class="odd"> 
<tr class="even"> 
<tr class="odd"> 
<tr class="even"> 
</tbody> 
</table> 
+0

* * 테이블에서 하나를 선택할 수 없습니다. 나는 당신을 얻지 못했습니다 –

+0

어떤 특정 요소를 두 번 클릭해야합니까? –

답변

0

확실하지 :

: x는 행 인덱스입니다

b.table(:id => "customerName_dataTableLov").tbody.tr(:index => x).double_click 
+0

나는이 문제를 해결했지만 모두 똑같은 감사합니다. – user2827430