の入力フィールドから()gettextのためにどのように私は、私は上記の入力タグからgetText()
したい以下のように私のDOM、angularjsアプリケーション
<input class="k-textbox ng-pristine ng-untouched ng-valid ng-valid-required" type="text" placeholder="" ng-blur="controller.isDirty=true" ng-change="controller.isDirty=true" ng-model="controller.model.value" ng-required="controller.model.required" ng-disabled="controller.model.readOnly" ng-focus="controller.showFieldHistory(controller)" disabled="disabled">
を持っています。私は以下の方法を試しましたが、これはJSapplication
なのでgetText
にはできません。テキストはDOM
には表示されませんが、UI
に表示されます。
List<WebElement> values = driver.findElements(By.xpath("//input[@ng-model='controller.model.value']"));
for(int i=0;i<values.size();i++)
{
String theTextIWant = values.get(0).getAttribute("ng-model");
System.out.println(theTextIWant);
}
以下は、上記のコードを実行したときの出力です。私はそれだけで内部に存在する値を取得することを言うことができ、出力から
controller.model.value
controller.model.value
controller.model.value
属性「ng-model」では表示されますが、UI
に表示される実際のテキストは表示されません。 UI
に表示されているテキストを入手するにはどうすればよいかアドバイスしてください。
予想されるテキスト:
ウェズリー
チョート
エクセレント - は:
は実際に
input
要素はvalue
属性にその値が含まれている、だからあなたは以下のように試してみてください非常に:)このためにハッピー:) –