任意の入力欄に文字列を入力するステップ。入力欄に値が入っている場合は、「入力値」で置き換えます。

パラメータ

パラメータ名 説明
フィールド名

id属性・name属性・placeholder属性
<label>タグのテキスト・CSS3セレクターなどが利用可能。

入力値 入力する文字列。

「ユーザ名」とラベル付された入力欄に入力する例

「ユーザ名」フィールドに「alice」と入力する

探索対象のフィールド

このステップは下記の順番でマッチする要素を探していきます。

<input type="text" id="フィールド名">
<input type="text" name="フィールド名">
<input type="text" placeholder="フィールド名">
<label for="...">フィールド名</label> <input id="..." type="text">
<label>フィールド名 <input type="text"></label>

<input type="password" id="フィールド名">
<input type="password" name="フィールド名">
<input type="password" placeholder="フィールド名">
<label for="...">フィールド名</label> <input id="..." type="password">
<label>フィールド名 <input type="password"></label>

<textarea id="フィールド名"></textarea>
<textarea name="フィールド名"></textarea>
<textarea placeholder="フィールド名"></textarea>
<label for="...">フィールド名</label> <textarea id="..."></textarea>
<label>フィールド名 <textarea type="password"></textarea></label>

<input type="email" id="フィールド名">
<input type="email" name="フィールド名">
<input type="email" placeholder="フィールド名">
<label for="...">フィールド名</label> <input id="..." type="email">
<label>フィールド名 <input type="email"></label>

<input type="tel" id="フィールド名">
<input type="tel" name="フィールド名">
<input type="tel" placeholder="フィールド名">
<label for="...">フィールド名</label> <input id="..." type="tel">
<label>フィールド名 <input type="tel"></label>

<input id="フィールド名">
<input name="フィールド名">
<input placeholder="フィールド名">
<label for="...">フィールド名</label> <input id="...">
<label>フィールド名 <input></label>

以上のフィールドを探した後、何も見つからなければCSS3としてフィールドを探索します。

別の表記

  • 」という値を「フィールド名」に入力する