2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Katalon RecorderでRecordした数字が入力されないときの対処法

Last updated at Posted at 2021-11-18

リグレッションテストの自動化を実現するためにKatalon Recorderを試していました。
その際数字入力の項目で、Recordでは問題なく記録できるが、作成したテストケースをPlayすると入力されずに空欄になる、また、Katalon Recorder上ではエラーになっていないという問題が起こったため、その解決策を記録しておきます。

#環境
Chrome拡張機能のKatalon Recorder (Selenium tests generator)を使用しました。

#どういった問題が起こったか
下記のような数字を入力するボックスに適当な数字を入力しKatalon RecorderでRecordしました。
Katalon Recorder上では値も正しく記録できていました。
screenshot-centurion-stg.signite.jp-2021.11.15-17_42_59.png

しかし、その後PlayするとRecord時に記録された数字は入力されず空欄になりました。
screenshot-centurion-stg.signite.jp-2021.11.15-17_41_25.png

Katalon Recorderを確認するとエラーは出ておらず入力したことになっていました。
キャプチャ.PNG

#解決策
CommandをsetTextに変更をしてPlayすると、記録された数字が入力されました。
Katalon Recorderでは文字列や数字を入力した際、Commandにデフォルトでtypeが使用されますが、<input type = "number"> <input type = "tel"> <input type = "time"> の入力フォームのときは、setTextのCommandを使用することで問題なく入力されるようになりました。

キャプチャ2.PNG

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?