2016-03-30 10 views
-2

Androidのセレンのタイムアウト?私はこの問題を解決することができますexception.Howコードはボタンが、イムgetttingタイムアウトを見つけるカントながらアサーションを追加

Boolean buton=getElement(By.className("android.widget.Button")).isDisplayed();   System.out.println("İzle butonlarının görülme durumu="+buton); 
      Assert.assertTrue("İzle butonu ekranda görülmedi!!.",buton); 
     clickAndWaitForElement(By.className("android.widget.Button")); 

答えて

1

isDisplayed()

自体はthis.itが動作するように

WebElement buton=driver.findElement(By.className("android.widget.Button")) 
if(button.isDisplayed()) { 
     System.out.println("İzle butonlarının görülme durumu="+buton); 
} 
else{ 
      Assert.assertTrue("İzle butonu ekranda görülmedi!!.",buton); } 
    ...... 
+1

にそれを修正するうん、私は変わっていた、ブール値を返します:リストブトン=ドライバを。 findElementById( "com.digiturk.iq.mobil:id/productDetailContainer")。findElements(By.className( "android.widget.Button")); \t \t Assert.assertTrue( "İzlebutonu ekrandagörülmed !!。"、buton.size()> 0); – little

関連する問題