0
0

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 1 year has passed since last update.

rSpec all メソッドより page.all メソッドのほうがいい気がする

Last updated at Posted at 2021-11-14

ajax な動作をテストしようとしたとき

all("input")[0].set("title1"
click_on  'レビューを投稿する'

みたいなテストを書いた。

このテストがとおったりとおらなかったり

適当に speep メソッドを散りばめても同じだった

開発環境

ruby 2.6.5
Ruby on Rails 5.2.5

前提

rSpec が導入されている
レビューを投稿するというボタンをクリックすると ajax でデータが反映される

結論

以下みたいにしたらうまくいくようになった

page.all("input")[0].set("title1")
click_on  'レビューを投稿する'

allpage をつけてやる

推測なんだけど、all だけだと範囲がひろすぎて set メソッドの処理が追いついてないのかも
それならメソッド内での処理の話だから sleep メソッドをいれても関係なかったのもわかる

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?