Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_items_shared_examples.rb « features « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4f36d8a046c747c0cacbe783d29db85f3cc4ec75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
# frozen_string_literal: true

RSpec.shared_context 'with work_items_mvc_2' do |flag|
  before do
    stub_feature_flags(work_items_mvc_2: flag)

    page.refresh
    wait_for_all_requests
  end
end

RSpec.shared_examples 'work items title' do
  let(:title_selector) { '[data-testid="work-item-title"]' }
  let(:title_with_edit_selector) { '[data-testid="work-item-title-with-edit"]' }

  context 'when the work_items_mvc_2 FF is disabled' do
    include_context 'with work_items_mvc_2', false

    it 'successfully shows and changes the title of the work item' do
      expect(work_item.reload.title).to eq work_item.title

      find(title_selector).set("Work item title")
      find(title_selector).native.send_keys(:return)
      wait_for_requests

      expect(work_item.reload.title).to eq 'Work item title'
    end
  end

  context 'when the work_items_mvc_2 FF is enabled' do
    include_context 'with work_items_mvc_2', true

    it 'successfully shows and changes the title of the work item' do
      expect(work_item.reload.title).to eq work_item.title

      click_button 'Edit', match: :first
      find(title_with_edit_selector).set("Work item title")
      send_keys([:command, :enter])
      wait_for_requests

      expect(work_item.reload.title).to eq 'Work item title'
    end
  end
end

RSpec.shared_examples 'work items toggle status button' do
  it 'successfully shows and changes the status of the work item' do
    click_button 'Close', match: :first

    expect(page).to have_button 'Reopen'
    expect(work_item.reload.state).to eq('closed')
  end
end

RSpec.shared_examples 'work items comments' do |type|
  let(:is_mac) { page.evaluate_script('navigator.platform').include?('Mac') }
  let(:modifier_key) { is_mac ? :command : :control }

  def set_comment
    fill_in _('Add a reply'), with: 'Test comment'
  end

  it 'successfully creates and shows comments' do
    set_comment
    click_button "Comment"

    page.within(".main-notes-list") do
      expect(page).to have_text 'Test comment'
    end
  end

  it 'successfully updates existing comments' do
    set_comment
    click_button "Comment"
    click_button _('Edit comment')
    send_keys(" updated")
    click_button _('Save comment')

    page.within(".main-notes-list") do
      expect(page).to have_content "Test comment updated"
    end
  end

  context 'for work item note actions signed in user with developer role' do
    let_it_be(:owner) { create(:user) }

    before do
      project.add_owner(owner)
    end

    it 'shows work item note actions' do
      set_comment
      send_keys([modifier_key, :enter])

      page.within(".main-notes-list") do
        expect(page).to have_text 'Test comment'
      end

      page.within('.timeline-entry.note.note-wrapper.note-comment:last-child') do
        click_button _('More actions')

        expect(page).to have_button _('Copy link')
        expect(page).to have_button _('Assign to commenting user')
        expect(page).to have_button _('Delete comment')
        expect(page).to have_button _('Edit comment')
      end
    end
  end

  it 'successfully posts comments using shortcut and checks if textarea is blank when reinitiated' do
    set_comment
    send_keys([modifier_key, :enter])

    page.within(".main-notes-list") do
      expect(page).to have_content 'Test comment'
    end
    expect(page).to have_field _('Add a reply'), with: ''
  end

  context 'when using quick actions' do
    it 'autocompletes quick actions common to all work item types', :aggregate_failures do
      click_reply_and_enter_slash

      page.within('#at-view-commands') do
        expect(page).to have_text("/title")
        expect(page).to have_text("/shrug")
        expect(page).to have_text("/tableflip")
        expect(page).to have_text("/close")
        expect(page).to have_text("/cc")
      end
    end

    context 'when a widget is enabled' do
      before do
        WorkItems::Type.default_by_type(type).widget_definitions
          .find_by_widget_type(:assignees).update!(disabled: false)
      end

      it 'autocompletes quick action for the enabled widget' do
        click_reply_and_enter_slash

        page.within('#at-view-commands') do
          expect(page).to have_text("/assign")
        end
      end
    end

    context 'when a widget is disabled' do
      before do
        WorkItems::Type.default_by_type(type).widget_definitions
          .find_by_widget_type(:assignees).update!(disabled: true)
      end

      it 'does not autocomplete quick action for the disabled widget' do
        click_reply_and_enter_slash

        page.within('#at-view-commands') do
          expect(page).not_to have_text("/assign")
        end
      end
    end

    def click_reply_and_enter_slash
      fill_in _('Add a reply'), with: '/'
    end
  end
end

RSpec.shared_examples 'work items assignees' do
  context 'when the work_items_mvc_2 FF is disabled' do
    include_context 'with work_items_mvc_2', false

    it 'successfully assigns the current user by searching',
      quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/413074' do
      # The button is only when the mouse is over the input
      find('[data-testid="work-item-assignees-input"]').fill_in(with: user.username)
      wait_for_requests
      # submit and simulate blur to save
      send_keys(:enter)
      find("body").click
      wait_for_requests

      expect(work_item.reload.assignees).to include(user)
    end

    it 'successfully assigns the current user by clicking `Assign myself` button' do
      find('[data-testid="work-item-assignees-input"]').hover
      click_button _('Assign yourself')

      expect(work_item.reload.assignees).to include(user)
    end

    it 'successfully removes all users on clear all button click' do
      find('[data-testid="work-item-assignees-input"]').hover
      click_button _('Assign yourself')

      expect(work_item.reload.assignees).to include(user)

      find('[data-testid="work-item-assignees-input"]').click
      click_button 'Clear all'
      find("body").click
      wait_for_requests

      expect(work_item.reload.assignees).not_to include(user)
    end

    it 'successfully removes user on clicking badge cross button' do
      find('[data-testid="work-item-assignees-input"]').hover
      click_button _('Assign yourself')

      expect(work_item.reload.assignees).to include(user)

      within('[data-testid="work-item-assignees-input"]') do
        click_button 'Close'
      end
      find("body").click
      wait_for_requests

      expect(work_item.reload.assignees).not_to include(user)
    end

    it 'updates the assignee in real-time' do
      Capybara::Session.new(:other_session)

      using_session :other_session do
        visit work_items_path
        expect(work_item.reload.assignees).not_to include(user)
      end

      find('[data-testid="work-item-assignees-input"]').hover
      click_button _('Assign yourself')

      expect(work_item.reload.assignees).to include(user)
      using_session :other_session do
        expect(work_item.reload.assignees).to include(user)
      end
    end
  end

  context 'when the work_items_mvc_2 FF is enabled' do
    let(:work_item_assignees_selector) { '[data-testid="work-item-assignees-with-edit"]' }

    include_context 'with work_items_mvc_2', true

    it 'successfully assigns the current user by searching',
      quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/413074' do
      # The button is only when the mouse is over the input
      find_and_click_edit(work_item_assignees_selector)

      select_listbox_item(user.username)

      find("body").click
      wait_for_all_requests

      expect(work_item.assignees).to include(user)
    end

    it 'successfully removes all users on clear all button click' do
      find_and_click_edit(work_item_assignees_selector)

      select_listbox_item(user.username)

      find("body").click
      wait_for_requests

      find_and_click_edit(work_item_assignees_selector)

      find_and_click_clear(work_item_assignees_selector)
      wait_for_all_requests

      expect(work_item.assignees).not_to include(user)
    end

    it 'updates the assignee in real-time' do
      Capybara::Session.new(:other_session)

      using_session :other_session do
        visit work_items_path
        expect(work_item.reload.assignees).not_to include(user)
      end

      click_button 'assign yourself'
      wait_for_all_requests

      expect(work_item.reload.assignees).to include(user)
      using_session :other_session do
        expect(work_item.reload.assignees).to include(user)
      end
    end
  end
end

RSpec.shared_examples 'work items labels' do
  let(:label_title_selector) { '[data-testid="labels-title"]' }
  let(:labels_input_selector) { '[data-testid="work-item-labels-input"]' }

  it 'successfully assigns a label' do
    find(labels_input_selector).fill_in(with: label.title)
    wait_for_requests
    # submit and simulate blur to save
    send_keys(:enter)
    find(label_title_selector).click
    wait_for_requests

    expect(work_item.labels).to include(label)
  end

  it 'successfully assigns multiple labels' do
    label2 = create(:label, project: project, title: "testing-label-2")

    find(labels_input_selector).fill_in(with: label.title)
    wait_for_requests
    send_keys(:enter)

    find(labels_input_selector).fill_in(with: label2.title)
    wait_for_requests
    send_keys(:enter)

    find(label_title_selector).click
    wait_for_requests

    expect(work_item.labels).to include(label)
    expect(work_item.labels).to include(label2)
  end

  it 'removes all labels on clear all button click' do
    find(labels_input_selector).fill_in(with: label.title)
    wait_for_requests
    send_keys(:enter)
    find(label_title_selector).click
    wait_for_requests

    expect(work_item.labels).to include(label)

    within(labels_input_selector) do
      find('input').click
      click_button 'Clear all'
    end
    find(label_title_selector).click
    wait_for_requests

    expect(work_item.labels).not_to include(label)
  end

  it 'removes label on clicking badge cross button' do
    find(labels_input_selector).fill_in(with: label.title)
    wait_for_requests
    send_keys(:enter)
    find(label_title_selector).click
    wait_for_requests

    expect(page).to have_text(label.title)

    within(labels_input_selector) do
      click_button 'Remove label'
    end
    find(label_title_selector).click
    wait_for_requests

    expect(work_item.labels).not_to include(label)
  end

  it 'updates the labels in real-time' do
    Capybara::Session.new(:other_session)

    using_session :other_session do
      visit work_items_path
      expect(page).not_to have_text(label.title)
    end

    find(labels_input_selector).fill_in(with: label.title)
    wait_for_requests
    send_keys(:enter)
    find(label_title_selector).click
    wait_for_requests

    expect(page).to have_text(label.title)

    using_session :other_session do
      wait_for_requests
      expect(page).to have_text(label.title)
    end
  end
end

RSpec.shared_examples 'work items description' do
  context 'for work_items_mvc_2 FF' do
    [true, false].each do |work_items_mvc_2_flag| # rubocop:disable RSpec/UselessDynamicDefinition -- check it for both off and on
      let(:edit_button) { work_items_mvc_2_flag ? 'Edit' : 'Edit description' }

      include_context 'with work_items_mvc_2', work_items_mvc_2_flag

      it 'shows GFM autocomplete', :aggregate_failures do
        click_button edit_button, match: :first
        fill_in _('Description'), with: "@#{user.username}"

        page.within('.atwho-container') do
          expect(page).to have_text(user.name)
        end
      end

      it 'autocompletes available quick actions', :aggregate_failures do
        click_button edit_button, match: :first
        fill_in _('Description'), with: '/'

        page.within('#at-view-commands') do
          expect(page).to have_text("title")
          expect(page).to have_text("shrug")
          expect(page).to have_text("tableflip")
          expect(page).to have_text("close")
          expect(page).to have_text("cc")
        end
      end

      context 'on conflict' do
        let_it_be(:other_user) { create(:user) }
        let(:expected_warning) { 'Someone edited the description at the same time you did.' }

        before do
          project.add_developer(other_user)
        end

        it 'shows conflict message when description changes', :aggregate_failures do
          click_button edit_button, match: :first

          ::WorkItems::UpdateService.new(
            container: work_item.project,
            current_user: other_user,
            params: { description: "oh no!" }
          ).execute(work_item)

          wait_for_requests

          fill_in _('Description'), with: 'oh yeah!'

          expect(page).to have_text(expected_warning)

          click_button s_('WorkItem|Save and overwrite')

          expect(page.find('[data-testid="work-item-description"]')).to have_text("oh yeah!")
        end
      end
    end
  end
end

RSpec.shared_examples 'work items invite members' do
  include Features::InviteMembersModalHelpers

  context 'when the work_items_mvc_2 FF is disabled' do
    include_context 'with work_items_mvc_2', false

    it 'successfully assigns the current user by searching' do
      # The button is only when the mouse is over the input
      find('[data-testid="work-item-assignees-input"]').fill_in(with: 'Invite members')
      wait_for_requests

      click_button('Invite members')

      page.within invite_modal_selector do
        expect(page).to have_text("You're inviting members to the #{work_item.project.name} project")
      end
    end
  end

  context 'when the work_items_mvc_2 FF is enabled' do
    let(:work_item_assignees_selector) { '[data-testid="work-item-assignees-with-edit"]' }

    include_context 'with work_items_mvc_2', true

    it 'successfully assigns the current user by searching' do
      # The button is only when the mouse is over the input
      find_and_click_edit(work_item_assignees_selector)
      wait_for_requests

      click_link('Invite members')

      page.within invite_modal_selector do
        expect(page).to have_text("You're inviting members to the #{work_item.project.name} project")
      end
    end
  end
end

RSpec.shared_examples 'work items milestone' do
  context 'on work_items_mvc_2 FF off' do
    include_context 'with work_items_mvc_2', false

    it 'searches and sets or removes milestone for the work item' do
      click_button s_('WorkItem|Add to milestone')
      send_keys "\"#{milestone.title}\""
      select_listbox_item(milestone.title, exact_text: true)

      expect(page).to have_button(milestone.title)

      click_button milestone.title
      select_listbox_item(s_('WorkItem|No milestone'), exact_text: true)

      expect(page).to have_button(s_('WorkItem|Add to milestone'))
    end
  end

  context 'on work_items_mvc_2 FF on' do
    let(:work_item_milestone_selector) { '[data-testid="work-item-milestone-with-edit"]' }

    include_context 'with work_items_mvc_2', true

    it 'passes axe automated accessibility testing in closed state' do
      expect(page).to be_axe_clean.within(work_item_milestone_selector)
    end

    context 'when edit is clicked' do
      it 'selects and updates the right milestone', :aggregate_failures do
        find_and_click_edit(work_item_milestone_selector)

        select_listbox_item(milestones[10].title)

        wait_for_requests
        within(work_item_milestone_selector) do
          expect(page).to have_text(milestones[10].title)
        end

        find_and_click_edit(work_item_milestone_selector)

        find_and_click_clear(work_item_milestone_selector)

        expect(find(work_item_milestone_selector)).to have_content('None')
      end

      it 'searches and sets or removes milestone for the work item' do
        find_and_click_edit(work_item_milestone_selector)
        within(work_item_milestone_selector) do
          send_keys "\"#{milestones[11].title}\""
          wait_for_requests

          select_listbox_item(milestones[11].title)
          expect(page).to have_text(milestones[11].title)
        end
      end
    end
  end
end

RSpec.shared_examples 'work items comment actions for guest users' do
  context 'for guest user' do
    it 'hides other actions other than copy link' do
      page.within(".main-notes-list") do
        click_button _('More actions'), match: :first

        expect(page).to have_button _('Copy link')
        expect(page).not_to have_button _('Assign to commenting user')
      end
    end
  end
end

RSpec.shared_examples 'work items notifications' do
  it 'displays toast when notification is toggled' do
    click_button _('More actions'), match: :first

    within_testid('notifications-toggle-form') do
      expect(page).not_to have_button(class: 'gl-toggle is-checked')

      click_button(class: 'gl-toggle')

      expect(page).to have_button(class: 'gl-toggle is-checked')
    end

    expect(page).to have_css('.gl-toast', text: _('Notifications turned on.'))
  end
end

RSpec.shared_examples 'work items todos' do
  it 'adds item to the list' do
    expect(page).to have_button s_('WorkItem|Add a to do')

    click_button s_('WorkItem|Add a to do')

    expect(page).to have_button s_('WorkItem|Mark as done')

    within_testid('todos-shortcut-button') do
      expect(page).to have_content '1'
    end
  end

  it 'marks a todo as done' do
    click_button s_('WorkItem|Add a to do')
    click_button s_('WorkItem|Mark as done')

    expect(page).to have_button s_('WorkItem|Add a to do')
    within_testid('todos-shortcut-button') do
      expect(page).to have_content("")
    end
  end
end

RSpec.shared_examples 'work items award emoji' do
  let(:award_section_selector) { '.awards' }
  let(:award_button_selector) { '[data-testid="award-button"]' }
  let(:selected_award_button_selector) { '[data-testid="award-button"].selected' }
  let(:grinning_emoji_selector) { 'gl-emoji[data-name="grinning"]' }
  let(:tooltip_selector) { '.gl-tooltip' }

  def select_emoji
    page.within(award_section_selector) do
      page.first(award_button_selector).click
    end

    wait_for_requests
  end

  before do
    emoji_upvote
  end

  it 'adds award to the work item for current user' do
    select_emoji

    within(award_section_selector) do
      expect(page).to have_selector(selected_award_button_selector)

      # As the user2 has already awarded the `:thumbsup:` emoji, the emoji count will be 2
      expect(first(award_button_selector)).to have_content '2'
    end
    expect(page.find(tooltip_selector)).to have_content("You and John reacted with :thumbsup:")
  end

  it 'removes award from work item for current user' do
    select_emoji

    page.within(award_section_selector) do
      # As the user2 has already awarded the `:thumbsup:` emoji, the emoji count will be 2
      expect(first(award_button_selector)).to have_content '2'
    end

    select_emoji

    page.within(award_section_selector) do
      # The emoji count will be back to 1
      expect(first(award_button_selector)).to have_content '1'
    end
  end

  it 'add custom award to the work item for current user' do
    within(award_section_selector) do
      click_button _('Add reaction')
      find(grinning_emoji_selector).click

      expect(page).to have_selector(grinning_emoji_selector)
    end
  end
end

RSpec.shared_examples 'work items parent' do |type|
  let(:work_item_parent) { create(:work_item, type, project: project) }

  def set_parent(parent_text)
    find('[data-testid="listbox-search-input"] .gl-listbox-search-input',
      visible: true).send_keys "\"#{parent_text}\""
    wait_for_requests

    find('.gl-new-dropdown-item', text: parent_text).click
    wait_for_all_requests
  end

  it 'searches and sets or removes parent for the work item' do
    find_by_testid('edit-parent').click
    within_testid('work-item-parent-form') do
      set_parent(work_item_parent.title)
    end

    expect(find_by_testid('work-item-parent-link')).to have_text(work_item_parent.title)
    wait_for_requests

    page.refresh
    find_by_testid('edit-parent').click

    click_button('Unassign')
    wait_for_requests

    expect(find_by_testid('work-item-parent-none')).to have_text('None')
  end
end

def find_and_click_edit(selector)
  within(selector) do
    click_button 'Edit'
  end
end

def find_and_click_clear(selector)
  within(selector) do
    click_button 'Clear'
  end
end

RSpec.shared_examples 'work items iteration' do
  let(:work_item_iteration_selector) { '[data-testid="work-item-iteration-with-edit"]' }
  let_it_be(:iteration_cadence) { create(:iterations_cadence, group: group, active: true) }
  let_it_be(:iteration) do
    create(
      :iteration,
      iterations_cadence: iteration_cadence,
      group: group,
      start_date: 1.day.from_now,
      due_date: 2.days.from_now
    )
  end

  let_it_be(:iteration2) do
    create(
      :iteration,
      iterations_cadence: iteration_cadence,
      group: group,
      start_date: 2.days.ago,
      due_date: 1.day.ago,
      state: 'closed',
      skip_future_date_validation: true
    )
  end

  include_context 'with work_items_mvc_2', true

  context 'for accessibility' do
    it 'has the work item iteration with edit' do
      expect(page).to have_selector(work_item_iteration_selector)
    end

    it 'passes axe automated accessibility testing in closed state' do
      expect(page).to be_axe_clean.within(work_item_iteration_selector)
    end

    # TODO, add test for automated accessibility after it is fixed in GlCollapsibleListBox
    # Invalid ARIA attribute value: aria-owns="listbox-##" when searchable
    # it 'passes axe automated accessibility testing in open state' do
    #   within(work_item_iteration) do
    #     click_button _('Edit')
    #     wait_for_requests

    #     expect(page).to be_axe_clean.within(work_item_iteration)
    #   end
    # end
  end

  context 'when edit is clicked' do
    it 'selects and updates the right iteration', :aggregate_failures do
      find_and_click_edit(work_item_iteration_selector)

      within(work_item_iteration_selector) do
        expect(page).to have_text(iteration_cadence.title)
        expect(page).to have_text(iteration.period)
      end

      select_listbox_item(iteration.period)

      wait_for_requests

      within(work_item_iteration_selector) do
        expect(page).to have_text(iteration_cadence.title)
        expect(page).to have_text(iteration.period)
      end

      find_and_click_edit(work_item_iteration_selector)

      find_and_click_clear(work_item_iteration_selector)

      expect(find(work_item_iteration_selector)).to have_content('None')
    end

    it 'searches and sets or removes iteration for the work item' do
      find_and_click_edit(work_item_iteration_selector)
      within(work_item_iteration_selector) do
        send_keys(iteration.title)
        wait_for_requests

        select_listbox_item(iteration.period)
        expect(page).to have_text(iteration.period)
      end
    end
  end
end