メインメニューを開く

差分

.NET版のSeleniumでTextAreaのテキストを取得する

307 バイト追加, 2021年9月9日 (木) 06:31
ページの作成:「SeleniumでTextAreaのテキストを取得するには「GetAttribute("value")」だ。 <source lang="csharp"> var text = textarea.GetAttribute("value"); </source…」
[[Selenium]]でTextAreaのテキストを取得するには「GetAttribute("value")」だ。

<source lang="csharp">
var text = textarea.GetAttribute("value");
</source>

== 関連項目 ==
* [[.NET版のSeleniumでTextAreaにテキストを入力する]]

[[category: Selenium]]
[[category: Xamarin.Mac]]