-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2057 lines (1915 loc) · 135 KB
/
index.html
File metadata and controls
2057 lines (1915 loc) · 135 KB
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
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Trello Testing Portfolio - Patrycja Gontarek</title>
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;0,700;1,400&display=swap" rel="stylesheet">
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Custom Styles -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation -->
<div class="template-nav">
<div class="nav-container">
<button class="nav-btn active" onclick="showTemplate('main')">🏠 Main</button>
<button class="nav-btn" onclick="showTemplate('testplan')">📋 Test Plan</button>
<button class="nav-btn" onclick="showTemplate('tc001')">TC001</button>
<button class="nav-btn" onclick="showTemplate('tc002')">TC002</button>
<button class="nav-btn" onclick="showTemplate('tc003')">TC003</button>
<button class="nav-btn" onclick="showTemplate('tc004')">TC004</button>
<button class="nav-btn" onclick="showTemplate('tc005')">TC005</button>
<button class="nav-btn" onclick="showTemplate('bug001')">🐛 BUG_001</button>
</div>
</div>
<!-- MAIN PAGE TEMPLATE -->
<div id="main" class="template-section active">
<div class="container">
<!-- Hero Section -->
<div class="hero-section">
<div class="hero-content">
<h1 class="hero-title">🧪 Trello Testing Project</h1>
<p class="hero-subtitle">Comprehensive QA Testing Suite for Trello Web Application - Professional Portfolio Showcase</p>
<div class="hero-stats">
<div class="stat-item">
<span class="stat-number">5</span>
<span class="stat-label">Test Cases</span>
</div>
<div class="stat-item">
<span class="stat-number">80%</span>
<span class="stat-label">Pass Rate</span>
</div>
<div class="stat-item">
<span class="stat-number">1</span>
<span class="stat-label">Bug Found</span>
</div>
<div class="stat-item">
<span class="stat-number">100%</span>
<span class="stat-label">Coverage</span>
</div>
</div>
</div>
</div>
<!-- Dashboard Cards -->
<div class="dashboard-grid">
<div class="dashboard-card card-completed">
<div class="card-header">
<span class="card-icon"></span>
<span class="card-title">Authentication Tests</span>
</div>
<div class="progress-bar">
<div class="progress-fill progress-completed" style="width: 100%;"></div>
</div>
<p><strong>3/3 test cases completed</strong></p>
<ul style="margin-top: 15px; padding-left: 20px; line-height: 1.6;">
<li><a href="#" onclick="showTemplate('tc001')" style="color: #4CAF50; text-decoration: none;">TC001: Login validation</a></li>
<li><a href="#" onclick="showTemplate('tc002')" style="color: #4CAF50; text-decoration: none;">TC002: Registration flow</a></li>
<li><a href="#" onclick="showTemplate('tc003')" style="color: #4CAF50; text-decoration: none;">TC003: Logout functionality</a></li>
</ul>
</div>
<div class="dashboard-card card-progress">
<div class="card-header">
<span class="card-icon"></span>
<span class="card-title">Core Features</span>
</div>
<div class="progress-bar">
<div class="progress-fill progress-partial" style="width: 50%;"></div>
</div>
<p><strong>2/2 test cases completed</strong></p>
<ul style="margin-top: 15px; padding-left: 20px; line-height: 1.6;">
<li><a href="#" onclick="showTemplate('tc004')" style="color: #FF9800; text-decoration: none;">TC004: Board creation (Partial Pass)</a></li>
<li><a href="#" onclick="showTemplate('tc005')" style="color: #4CAF50; text-decoration: none;">TC005: Card management</a></li>
</ul>
</div>
<div class="dashboard-card card-pending">
<div class="card-header">
<span class="card-icon"></span>
<span class="card-title">Quality Status</span>
</div>
<p style="margin-bottom: 15px;"><strong>1 bug identified and documented</strong></p>
<div style="background: var(--error-light); padding: 15px; border-radius: 8px; margin-top: 15px; border: 1px solid var(--light-border);">
<div style="display: flex; align-items: center; gap: 10px; margin-bottom: 10px;">
<span style="background: var(--warning-orange); padding: 4px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: bold; color: white;">MEDIUM</span>
<span style="color: var(--text-secondary);">BUG_001</span>
</div>
<p style="font-size: 0.9rem; line-height: 1.4;"><a href="#" onclick="showTemplate('bug001')" style="color: var(--error-red); text-decoration: none;">White Background Selection Creates Blue Gradient</a></p>
</div>
</div>
</div>
<!-- Professional Info -->
<div style="background: var(--lavender-light); border-radius: 12px; padding: 30px; border: 1px solid var(--lavender-border); text-align: center; margin-bottom: 40px;">
<h3 style="color: var(--text-primary); margin-bottom: 20px; font-size: 1.5rem; font-weight: 600;">Professional Details</h3>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; color: var(--text-secondary);">
<div><strong style="color: var(--text-primary);">Created by:</strong> Patrycja Gontarek</div>
<div><strong style="color: var(--text-primary);">Environment:</strong> Chrome 137.x, macOS Sequoia</div>
<div><strong style="color: var(--text-primary);">Duration:</strong> 7 days (27/05 - 03/06/2025)</div>
<div><strong style="color: var(--text-primary);">Version:</strong> 1.2</div>
</div>
</div>
</div>
</div>
<!-- TC001 - LOGIN TEST -->
<div id="tc001" class="template-section">
<div class="container">
<button class="back-nav" onclick="showTemplate('main')">← Back to Main</button>
<div class="test-case-detail">
<div class="test-case-header">
<h1 class="test-case-id-title">TC001</h1>
<p class="test-case-subtitle">Verify successful login with valid credentials</p>
<div class="test-meta">
<div class="meta-item">
<div class="meta-label">Priority</div>
<div class="meta-value">High</div>
</div>
<div class="meta-item">
<div class="meta-label">Test Type</div>
<div class="meta-value">Positive Test</div>
</div>
<div class="meta-item">
<div class="meta-label">Feature</div>
<div class="meta-value">User Authentication</div>
</div>
<div class="meta-item">
<div class="meta-label">Status</div>
<div class="meta-value"><span class="status-badge status-pass">Pass</span></div>
</div>
<div class="meta-item">
<div class="meta-label">Created By</div>
<div class="meta-value">Patrycja Gontarek</div>
</div>
<div class="meta-item">
<div class="meta-label">Executed Date</div>
<div class="meta-value">27/05/2025</div>
</div>
</div>
</div>
<h2 class="section-header">Test Objective</h2>
<p>To verify that registered users can successfully log into Trello using valid email and password combinations, and are redirected to their dashboard upon successful authentication.</p>
<h2 class="section-header">Preconditions</h2>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>User has a valid registered Trello account</li>
<li>User is currently logged out</li>
<li>User has stable internet connection</li>
<li>Testing on supported browser (Chrome)</li>
</ul>
<h2 class="section-header">Test Data</h2>
<div class="meta-item">
<p><strong>Valid Email:</strong> testuser@example.com<br>
<strong>Valid Password:</strong> ValidPassword123*<br>
<strong>Browser:</strong> Chrome (Version 137.0.7151.56)<br>
<strong>Test Environment:</strong> Production (trello.com)</p>
<p style="margin-top: 10px; color: #888; font-style: italic;">Note: These are example formats. Create your own test account for actual execution.</p>
</div>
<h2 class="section-header">Test Steps</h2>
<table class="test-steps-table">
<thead>
<tr>
<th>Step No.</th>
<th>Test Steps</th>
<th>Expected Result</th>
<th>Actual Result</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Navigate to https://trello.com</td>
<td>Trello homepage loads successfully with "Log in" button visible in top right corner</td>
<td>Trello homepage loaded successfully with visible "Log in" button</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>2</td>
<td>Click on "Log in" button</td>
<td>User is redirected to login page with email and password fields displayed</td>
<td>The login page showed successfully</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>3</td>
<td>Enter valid email address in the email field</td>
<td>Email is accepted, field shows no error validation</td>
<td>Email is visible in the field</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>4</td>
<td>Enter valid password in the password field</td>
<td>Password is masked with dots/asterisks, "Show" icon is visible</td>
<td>All elements displayed as expected</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>5</td>
<td>Click on "Log in" button</td>
<td>Loading indicator appears. User is authenticated. Redirected to dashboard</td>
<td>The board with the logged-in user is visible</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>6</td>
<td>Verify dashboard elements</td>
<td>User's boards are displayed. Profile icon shows in top right, "Create" option is available</td>
<td>Dashboard loaded successfully displaying 4 user boards in grid layout. Profile icon with user avatar visible. Blue 'Create' button prominently displayed. No console errors detected</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
</tbody>
</table>
<h2 class="section-header">Post-conditions</h2>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>User is successfully logged into Trello</li>
<li>User session is active</li>
<li>User can access all features available to their account type</li>
</ul>
<h2 class="section-header">Test Results</h2>
<div class="meta-item">
<p><strong>Executed Date:</strong> 28/05/2025<br>
<strong>Executed By:</strong> Patrycja Gontarek<br>
<strong>Overall Status:</strong> <span class="status-badge status-pass">Pass</span><br>
<strong>Defects Found:</strong> None</p>
</div>
<!-- Screenshot Gallery -->
<div class="screenshot-gallery">
<div class="gallery-header">
<h2 class="gallery-title">
Screenshots
<span class="gallery-counter">2</span>
</h2>
</div>
<div class="gallery-grid" id="tc001-gallery">
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC001/Screenshot1.png', 'Login Page - Initial State', 0, ['screenshots/TC001/Screenshot1.png', 'screenshots/TC001/Screenshot2.png'], ['Login Page - Initial State', 'Login Page - After Successful Login'])">
<img src="screenshots/TC001/Screenshot1.png" alt="Login Page - Initial State" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Login Page - Initial State</div>
<div class="gallery-caption-desc">Trello login page showing email and password fields</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC001/Screenshot2.png', 'Login Page - After Successful Login', 1, ['screenshots/TC001/Screenshot1.png', 'screenshots/TC001/Screenshot2.png'], ['Login Page - Initial State', 'Login Page - After Successful Login'])">
<img src="screenshots/TC001/Screenshot2.png" alt="Login Page - After Successful Login" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Login Page - After Successful Login</div>
<div class="gallery-caption-desc">User dashboard after successful authentication</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TC002 - REGISTRATION TEST -->
<div id="tc002" class="template-section">
<div class="container">
<button class="back-nav" onclick="showTemplate('main')">← Back to Main</button>
<div class="test-case-detail">
<div class="test-case-header">
<h1 class="test-case-id-title">TC002</h1>
<p class="test-case-subtitle">Verify registration with already registered email</p>
<div class="test-meta">
<div class="meta-item">
<div class="meta-label">Priority</div>
<div class="meta-value">High</div>
</div>
<div class="meta-item">
<div class="meta-label">Test Type</div>
<div class="meta-value">Negative Test</div>
</div>
<div class="meta-item">
<div class="meta-label">Feature</div>
<div class="meta-value">User Registration</div>
</div>
<div class="meta-item">
<div class="meta-label">Status</div>
<div class="meta-value"><span class="status-badge status-pass">Pass</span></div>
</div>
<div class="meta-item">
<div class="meta-label">Created By</div>
<div class="meta-value">Patrycja Gontarek</div>
</div>
<div class="meta-item">
<div class="meta-label">Executed Date</div>
<div class="meta-value">27/05/2025</div>
</div>
</div>
</div>
<h2 class="section-header">Test Objective</h2>
<p>To verify that the system prevents users from creating duplicate accounts with an email address that is already registered in Trello, and displays appropriate error messaging.</p>
<h2 class="section-header">Preconditions</h2>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>Tester has access to an email that is already registered in Trello</li>
<li>User is on a cleared browser (no cached data)</li>
<li>User is not logged into any Trello account</li>
<li>Stable internet connection</li>
</ul>
<h2 class="section-header">Test Steps</h2>
<table class="test-steps-table">
<thead>
<tr>
<th>Step No.</th>
<th>Test Steps</th>
<th>Expected Result</th>
<th>Actual Result</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Navigate to https://trello.com</td>
<td>Trello homepage loads with "Create an account" button visible</td>
<td>Trello homepage loaded with blue link "Create an account"</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>2</td>
<td>Click on "Create an account" button</td>
<td>Registration page loads with email field and "Sign up" button</td>
<td>Registration page loaded with email field and blue "Sign up" button</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>3</td>
<td>Enter an already registered email address</td>
<td>Email is accepted in the field, no immediate validation</td>
<td>Email address appeared in the field</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>4</td>
<td>Click "Sign up" button</td>
<td>System checks email availability. Error message appears. User remains on registration page</td>
<td>System checked email availability and immediately redirected to "Log in to continue" page</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>5</td>
<td>Verify error message content on login page</td>
<td>Error shows "An account with this email already exists" or similar user-friendly message</td>
<td>Error showed: "It looks like you've already got an account associated with this email. Log in instead or reset your password if you've forgotten it"</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>6</td>
<td>Verify page behaviour after error</td>
<td>Email field retains the entered value. User can proceed to login</td>
<td>Email address pre-filled in the form field. Blue "Log in" button is provided. User can modify email and try to log in to existing account</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
</tbody>
</table>
<div class="findings-section">
<h2 class="section-header">Findings & Observations</h2>
<div class="finding-item">
<div class="finding-title">UX Enhancement/Positive Observation</div>
<div class="finding-content">
During test execution, I discovered that Trello implements an intelligent redirect flow instead of traditional inline error messaging:
<br><br>
<strong>Expected:</strong> Error message on registration page<br>
<strong>Actual:</strong> Automatic redirect to login page with pre-filled email<br>
<strong>Impact:</strong> Saves users 5-10 seconds and reduces friction
<br><br>
This demonstrates superior UX design thinking by assuming user intent (existing user forgot they have account) rather than treating as error.
</div>
</div>
</div>
<!-- Screenshot Gallery -->
<div class="screenshot-gallery">
<div class="gallery-header">
<h2 class="gallery-title">
Screenshots
<span class="gallery-counter">2</span>
</h2>
</div>
<div class="gallery-grid" id="tc002-gallery">
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC002/Screenshot3.png', 'Registration Flow - Duplicate Email Error', 0, ['screenshots/TC002/Screenshot3.png', 'screenshots/TC002/Screenshot5.png'], ['Registration Flow - Duplicate Email Error', 'Registration Flow - Login Page'])">
<img src="screenshots/TC002/Screenshot3.png" alt="Registration Flow - Duplicate Email Error" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Registration Flow - Duplicate Email Error</div>
<div class="gallery-caption-desc">System redirects to login page with pre-filled email when duplicate email is detected</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC002/Screenshot5.png', 'Registration Flow - Login Page', 1, ['screenshots/TC002/Screenshot3.png', 'screenshots/TC002/Screenshot5.png'], ['Registration Flow - Duplicate Email Error', 'Registration Flow - Login Page'])">
<img src="screenshots/TC002/Screenshot5.png" alt="Registration Flow - Login Page" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Registration Flow - Login Page</div>
<div class="gallery-caption-desc">Login page showing pre-filled email and password field</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TC003 - LOGOUT TEST -->
<div id="tc003" class="template-section">
<div class="container">
<button class="back-nav" onclick="showTemplate('main')">← Back to Main</button>
<div class="test-case-detail">
<div class="test-case-header">
<h1 class="test-case-id-title">TC003</h1>
<p class="test-case-subtitle">Verify logout functionality</p>
<div class="test-meta">
<div class="meta-item">
<div class="meta-label">Priority</div>
<div class="meta-value">High</div>
</div>
<div class="meta-item">
<div class="meta-label">Test Type</div>
<div class="meta-value">Positive Test</div>
</div>
<div class="meta-item">
<div class="meta-label">Feature</div>
<div class="meta-value">User Logout</div>
</div>
<div class="meta-item">
<div class="meta-label">Status</div>
<div class="meta-value"><span class="status-badge status-pass">Pass</span></div>
</div>
<div class="meta-item">
<div class="meta-label">Created By</div>
<div class="meta-value">Patrycja Gontarek</div>
</div>
<div class="meta-item">
<div class="meta-label">Executed Date</div>
<div class="meta-value">29/05/2025</div>
</div>
</div>
</div>
<h2 class="section-header">Test Objective</h2>
<p>To verify that users can successfully logout from Trello, ensuring proper session termination, security handling, and consistent behavior across multiple tabs.</p>
<h2 class="section-header">Preconditions</h2>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>User is successfully logged into Trello</li>
<li>User has at least one board open</li>
<li>Two browser tabs are open with Trello</li>
<li>Browser DevTools is open to monitor cookies/network</li>
</ul>
<h2 class="section-header">Test Steps</h2>
<table class="test-steps-table">
<thead>
<tr>
<th>Step No.</th>
<th>Test Steps</th>
<th>Expected Result</th>
<th>Actual Result</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Open Trello in 2 tabs, ensure both show logged-in state</td>
<td>Both tabs display user profile, boards, and authenticated content</td>
<td>Found user profile avatar in top-right corner, boards displayed in the middle, authenticated content visible</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>2</td>
<td>In DevTools > Application > Cookies, note auth cookies</td>
<td>Should see authentication cookies including 'cloud.session.token'</td>
<td>Found multiple auth cookies: cloud.session.token (991 bytes), atlassian.account.xsrf.token, atlUserHash, and 15+ other cookies</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>3</td>
<td>Copy board URL and click profile avatar (top-right corner)</td>
<td>Dropdown menu appears with account options including "Log out"</td>
<td>Various options were found in the dropdown, including "Log out"</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>4</td>
<td>Click "Log out" option</td>
<td>Logout process initiates (may show loading or confirmation)</td>
<td>Redirected to "Log out of your Atlassian account" with visible blue "Log out" button</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>5</td>
<td>Click blue "Log out" button</td>
<td>Redirected to Trello homepage with "Log in" option visible</td>
<td>Successfully redirected to homepage with "Log in" option in upper right corner</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>6</td>
<td>Check second browser tab</td>
<td>Tab should show logged-out state on refresh/action</td>
<td>Tab displayed "Page not found. This page may be private. You must log in to view it."</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>7</td>
<td>In first tab, click browser back button</td>
<td>Should NOT return to authenticated pages</td>
<td>Website loaded on "Log out of your Atlassian account", no access to previous authenticated content</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>8</td>
<td>Try accessing copied board URL</td>
<td>Should show login prompt or error, not show board content</td>
<td>Displayed "Page not found" with message "This page may be private. You must log in to view it"</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>9</td>
<td>Open DevTools > Application > Cookies</td>
<td>Session cookies should be cleared/expired</td>
<td>Main session token cleared. Some Atlassian ecosystem cookies persist (by design)</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>10</td>
<td>Go to Network tab, refresh page and check API calls</td>
<td>Should block access to user data</td>
<td>GET request returns 200 OK but with error page content (no user data exposed). Page shows login prompt</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
</tbody>
</table>
<div class="findings-section">
<h2 class="section-header">Findings & Observations</h2>
<div class="finding-item">
<div class="finding-title">1. Persistent Atlassian Ecosystem Cookies (Expected Behavior)</div>
<div class="finding-content">
Some cookies remain after logout: __aid_user_id, atlUserHash, hasAccount=atlassian<br>
<strong>Assessment:</strong> This is by design for Atlassian's cross-product features<br>
<strong>Security Impact:</strong> None - these cookies cannot grant access to Trello resources
</div>
</div>
<div class="finding-item">
<div class="finding-title">2. API Endpoints Return 200 OK with Error Page (Expected Behavior)</div>
<div class="finding-content">
Board endpoints return 200 OK but serve error pages<br>
<strong>Assessment:</strong> Common practice - status code indicates page loaded successfully<br>
<strong>Security Impact:</strong> None - actual content shows login prompt, no data exposed
</div>
</div>
<div class="finding-item">
<div class="finding-title">3. Proper Session Termination Confirmed</div>
<div class="finding-content">
Critical session token (cloud.session.token) is properly cleared<br>
All attempts to access user resources result in login prompts<br>
No user data accessible post-logout
</div>
</div>
</div>
<!-- Screenshot Gallery -->
<div class="screenshot-gallery">
<div class="gallery-header">
<h2 class="gallery-title">
Screenshots
<span class="gallery-counter">7</span>
</h2>
<div class="gallery-categories" data-gallery="tc003-gallery">
<div class="gallery-category active" onclick="filterGallery('all', 'tc003-gallery')">All</div>
<div class="gallery-category" onclick="filterGallery('ui', 'tc003-gallery')">UI</div>
<div class="gallery-category" onclick="filterGallery('network', 'tc003-gallery')">Network</div>
<div class="gallery-category" onclick="filterGallery('cookies', 'tc003-gallery')">Cookies</div>
</div>
</div>
<div class="gallery-grid" id="tc003-gallery">
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC003/Screenshot__T003_Tab1.png', 'Tab 1 - Logged In State', 0, ['screenshots/TC003/Screenshot__T003_Tab1.png', 'screenshots/TC003/Screenshot_TC003_Tab2.png', 'screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'screenshots/TC003/Screenshot_TC003_CookiesAfter.png'], ['Tab 1 - Logged In State', 'Tab 2 - Logged In State', 'Profile Dropdown Menu', 'Atlassian Logout Page', 'Network Calls - 200 OK Response', 'Cookies Before Logout', 'Cookies After Logout'])">
<img src="screenshots/TC003/Screenshot__T003_Tab1.png" alt="Tab 1 - Logged In State" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Tab 1 - Logged In State</div>
<div class="gallery-caption-desc">First browser tab showing authenticated user state</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC003/Screenshot_TC003_Tab2.png', 'Tab 2 - Logged In State', 1, ['screenshots/TC003/Screenshot__T003_Tab1.png', 'screenshots/TC003/Screenshot_TC003_Tab2.png', 'screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'screenshots/TC003/Screenshot_TC003_CookiesAfter.png'], ['Tab 1 - Logged In State', 'Tab 2 - Logged In State', 'Profile Dropdown Menu', 'Atlassian Logout Page', 'Network Calls - 200 OK Response', 'Cookies Before Logout', 'Cookies After Logout'])">
<img src="screenshots/TC003/Screenshot_TC003_Tab2.png" alt="Tab 2 - Logged In State" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Tab 2 - Logged In State</div>
<div class="gallery-caption-desc">Second browser tab showing authenticated user state</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'Profile Dropdown Menu', 2, ['screenshots/TC003/Screenshot__T003_Tab1.png', 'screenshots/TC003/Screenshot_TC003_Tab2.png', 'screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'screenshots/TC003/Screenshot_TC003_CookiesAfter.png'], ['Tab 1 - Logged In State', 'Tab 2 - Logged In State', 'Profile Dropdown Menu', 'Atlassian Logout Page', 'Network Calls - 200 OK Response', 'Cookies Before Logout', 'Cookies After Logout'])">
<img src="screenshots/TC003/Screenshot_TC003_ProfileDropdown.png" alt="Profile Dropdown Menu" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Profile Dropdown Menu</div>
<div class="gallery-caption-desc">User profile dropdown with logout option visible</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'Atlassian Logout Page', 3, ['screenshots/TC003/Screenshot__T003_Tab1.png', 'screenshots/TC003/Screenshot_TC003_Tab2.png', 'screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'screenshots/TC003/Screenshot_TC003_CookiesAfter.png'], ['Tab 1 - Logged In State', 'Tab 2 - Logged In State', 'Profile Dropdown Menu', 'Atlassian Logout Page', 'Network Calls - 200 OK Response', 'Cookies Before Logout', 'Cookies After Logout'])">
<img src="screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png" alt="Atlassian Logout Page" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Atlassian Logout Page</div>
<div class="gallery-caption-desc">Confirmation page for logging out of Atlassian account</div>
</div>
</div>
<div class="gallery-item" data-category="network" onclick="openLightbox('screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'Network Calls - 200 OK Response', 4, ['screenshots/TC003/Screenshot__T003_Tab1.png', 'screenshots/TC003/Screenshot_TC003_Tab2.png', 'screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'screenshots/TC003/Screenshot_TC003_CookiesAfter.png'], ['Tab 1 - Logged In State', 'Tab 2 - Logged In State', 'Profile Dropdown Menu', 'Atlassian Logout Page', 'Network Calls - 200 OK Response', 'Cookies Before Logout', 'Cookies After Logout'])">
<img src="screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png" alt="Network Calls - 200 OK Response" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Network Calls - 200 OK Response</div>
<div class="gallery-caption-desc">DevTools Network tab showing API responses after logout</div>
</div>
</div>
<div class="gallery-item" data-category="cookies" onclick="openLightbox('screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'Cookies Before Logout', 5, ['screenshots/TC003/Screenshot__T003_Tab1.png', 'screenshots/TC003/Screenshot_TC003_Tab2.png', 'screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'screenshots/TC003/Screenshot_TC003_CookiesAfter.png'], ['Tab 1 - Logged In State', 'Tab 2 - Logged In State', 'Profile Dropdown Menu', 'Atlassian Logout Page', 'Network Calls - 200 OK Response', 'Cookies Before Logout', 'Cookies After Logout'])">
<img src="screenshots/TC003/Screenshot_TC003_CookiesBefore.png" alt="Cookies Before Logout" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Cookies Before Logout</div>
<div class="gallery-caption-desc">DevTools Application tab showing cookies before logout</div>
</div>
</div>
<div class="gallery-item" data-category="cookies" onclick="openLightbox('screenshots/TC003/Screenshot_TC003_CookiesAfter.png', 'Cookies After Logout', 6, ['screenshots/TC003/Screenshot__T003_Tab1.png', 'screenshots/TC003/Screenshot_TC003_Tab2.png', 'screenshots/TC003/Screenshot_TC003_ProfileDropdown.png', 'screenshots/TC003/Screenshot_TC003_AtlassianLogOut.png', 'screenshots/TC003/Screenshot_TC003_NetworkCalls200OK.png', 'screenshots/TC003/Screenshot_TC003_CookiesBefore.png', 'screenshots/TC003/Screenshot_TC003_CookiesAfter.png'], ['Tab 1 - Logged In State', 'Tab 2 - Logged In State', 'Profile Dropdown Menu', 'Atlassian Logout Page', 'Network Calls - 200 OK Response', 'Cookies Before Logout', 'Cookies After Logout'])">
<img src="screenshots/TC003/Screenshot_TC003_CookiesAfter.png" alt="Cookies After Logout" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Cookies After Logout</div>
<div class="gallery-caption-desc">DevTools Application tab showing cookies after logout</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TC004 - BOARD CREATION TEST -->
<div id="tc004" class="template-section">
<div class="container">
<button class="back-nav" onclick="showTemplate('main')">← Back to Main</button>
<div class="test-case-detail">
<div class="test-case-header">
<h1 class="test-case-id-title">TC004</h1>
<p class="test-case-subtitle">Create and Configure a New Board</p>
<div class="test-meta">
<div class="meta-item">
<div class="meta-label">Priority</div>
<div class="meta-value">High</div>
</div>
<div class="meta-item">
<div class="meta-label">Test Type</div>
<div class="meta-value">Positive Test</div>
</div>
<div class="meta-item">
<div class="meta-label">Feature</div>
<div class="meta-value">Board Management</div>
</div>
<div class="meta-item">
<div class="meta-label">Status</div>
<div class="meta-value"><span class="status-badge status-partial">Partial Pass</span></div>
</div>
<div class="meta-item">
<div class="meta-label">Created By</div>
<div class="meta-value">Patrycja Gontarek</div>
</div>
<div class="meta-item">
<div class="meta-label">Executed Date</div>
<div class="meta-value">30/05/2025</div>
</div>
</div>
</div>
<h2 class="section-header">Test Objective</h2>
<p>To verify that authenticated users can successfully create a new Trello board with custom configurations, including board name, visibility settings, and background selection, ensuring proper board initialization and access control.</p>
<h2 class="section-header">Preconditions</h2>
<ul style="padding-left: 20px; line-height: 1.8;">
<li>User is successfully logged into Trello</li>
<li>User has permissions to create boards (free tier allows up to 10 boards)</li>
<li>User is on the main dashboard</li>
<li>Browser DevTools is available for monitoring network requests</li>
</ul>
<h2 class="section-header">Test Steps (Key Steps Shown)</h2>
<table class="test-steps-table">
<thead>
<tr>
<th>Step No.</th>
<th>Test Steps</th>
<th>Expected Result</th>
<th>Actual Result</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>From dashboard, click blue "Create" button</td>
<td>Dropdown menu appears with "Create board" option</td>
<td>Dropdown displayed with "Create board" and "Start with a template" options</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>4</td>
<td>Select white background (first option)</td>
<td>White background should be selectable and highlighted</td>
<td>White background was available and highlighted with black checkmark</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>7</td>
<td>Click "Create" button</td>
<td>Loading indicator appears, button shows disabled state</td>
<td>Button showed brief loading state, then modal closed. Network showed POST request</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>8</td>
<td>Verify board creation success</td>
<td>Redirected to new board URL with white background and "Add another list" option</td>
<td>Successfully redirected to new board but showing gradient-bubble blue background instead of selected white, with 3 default lists: "To Do", "Doing", "Done"</td>
<td><span class="status-badge status-partial">Partial Pass - Bug Found</span></td>
</tr>
<tr>
<td>12</td>
<td>Check API response for background setting</td>
<td>Response should include background: "white"</td>
<td>API returned background: "gradient-bubble" instead of "white"</td>
<td><span class="status-badge status-partial">Partial Pass</span></td>
</tr>
</tbody>
</table>
<div class="findings-section">
<h2 class="section-header">Findings & Observations</h2>
<div class="finding-item">
<div class="finding-title">1. Default Board Configuration</div>
<div class="finding-content">
<strong>Observation:</strong> Three default lists are created: "To Do", "Doing", "Done"<br>
<strong>Assessment:</strong> Follows standard Kanban methodology<br>
<strong>User Impact:</strong> Immediate usability without additional setup
</div>
</div>
<div class="finding-item">
<div class="finding-title">2. Background Color Inconsistency (<a href="#" onclick="showTemplate('bug001')" style="color: #f44336;">BUG_001</a>)</div>
<div class="finding-content">
<strong>Observation:</strong> Selected white background appears as gradient-bubble<br>
<strong>Assessment:</strong> Potential UI/backend synchronization issue<br>
<strong>Impact:</strong> Minor visual discrepancy, functionality not affected
</div>
</div>
<div class="finding-item">
<div class="finding-title">3. Performance Metrics (Within Acceptable Range)</div>
<div class="finding-content">
<strong>Board Creation:</strong> ~1.2 seconds from click to redirect<br>
<strong>API Response:</strong> 847ms for POST /1/boards endpoint<br>
<strong>Page Load:</strong> 2.1 seconds to fully interactive state
</div>
</div>
</div>
<!-- Screenshot Gallery -->
<div class="screenshot-gallery">
<div class="gallery-header">
<h2 class="gallery-title">
Screenshots
<span class="gallery-counter">6</span>
</h2>
<div class="gallery-categories" data-gallery="tc004-gallery">
<div class="gallery-category active" onclick="filterGallery('all', 'tc004-gallery')">All</div>
<div class="gallery-category" onclick="filterGallery('ui', 'tc004-gallery')">UI</div>
<div class="gallery-category" onclick="filterGallery('api', 'tc004-gallery')">API</div>
<div class="gallery-category" onclick="filterGallery('bug', 'tc004-gallery')">Bug</div>
</div>
</div>
<div class="gallery-grid" id="tc004-gallery">
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC004/Screenshot_TC004_CreateDropdown.png', 'Create Dropdown Menu', 0, ['screenshots/TC004/Screenshot_TC004_CreateDropdown.png', 'screenshots/TC004/Screenshot_TC004_BoardCreationModal.png', 'screenshots/TC004/Screenshot_TC004_NewBoardCreated.png', 'screenshots/TC004/Screenshot_TC004_BoardInDashboard.png', 'screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png', 'screenshots/TC004/Screenshot_TC004_Bug.png'], ['Create Dropdown Menu', 'Board Creation Modal', 'New Board Created', 'Board in Dashboard', 'API Response - Board Name', 'Bug - Background Color Issue'])">
<img src="screenshots/TC004/Screenshot_TC004_CreateDropdown.png" alt="Create Dropdown Menu" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Create Dropdown Menu</div>
<div class="gallery-caption-desc">Dashboard create button dropdown with board creation option</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC004/Screenshot_TC004_BoardCreationModal.png', 'Board Creation Modal', 1, ['screenshots/TC004/Screenshot_TC004_CreateDropdown.png', 'screenshots/TC004/Screenshot_TC004_BoardCreationModal.png', 'screenshots/TC004/Screenshot_TC004_NewBoardCreated.png', 'screenshots/TC004/Screenshot_TC004_BoardInDashboard.png', 'screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png', 'screenshots/TC004/Screenshot_TC004_Bug.png'], ['Create Dropdown Menu', 'Board Creation Modal', 'New Board Created', 'Board in Dashboard', 'API Response - Board Name', 'Bug - Background Color Issue'])">
<img src="screenshots/TC004/Screenshot_TC004_BoardCreationModal.png" alt="Board Creation Modal" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Board Creation Modal</div>
<div class="gallery-caption-desc">Modal for creating new board with white background selected</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC004/Screenshot_TC004_NewBoardCreated.png', 'New Board Created', 2, ['screenshots/TC004/Screenshot_TC004_CreateDropdown.png', 'screenshots/TC004/Screenshot_TC004_BoardCreationModal.png', 'screenshots/TC004/Screenshot_TC004_NewBoardCreated.png', 'screenshots/TC004/Screenshot_TC004_BoardInDashboard.png', 'screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png', 'screenshots/TC004/Screenshot_TC004_Bug.png'], ['Create Dropdown Menu', 'Board Creation Modal', 'New Board Created', 'Board in Dashboard', 'API Response - Board Name', 'Bug - Background Color Issue'])">
<img src="screenshots/TC004/Screenshot_TC004_NewBoardCreated.png" alt="New Board Created" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">New Board Created</div>
<div class="gallery-caption-desc">Successfully created board with default lists</div>
</div>
</div>
<div class="gallery-item" data-category="ui" onclick="openLightbox('screenshots/TC004/Screenshot_TC004_BoardInDashboard.png', 'Board in Dashboard', 3, ['screenshots/TC004/Screenshot_TC004_CreateDropdown.png', 'screenshots/TC004/Screenshot_TC004_BoardCreationModal.png', 'screenshots/TC004/Screenshot_TC004_NewBoardCreated.png', 'screenshots/TC004/Screenshot_TC004_BoardInDashboard.png', 'screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png', 'screenshots/TC004/Screenshot_TC004_Bug.png'], ['Create Dropdown Menu', 'Board Creation Modal', 'New Board Created', 'Board in Dashboard', 'API Response - Board Name', 'Bug - Background Color Issue'])">
<img src="screenshots/TC004/Screenshot_TC004_BoardInDashboard.png" alt="Board in Dashboard" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Board in Dashboard</div>
<div class="gallery-caption-desc">New board appears in user dashboard</div>
</div>
</div>
<div class="gallery-item" data-category="api" onclick="openLightbox('screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png', 'API Response - Board Name', 4, ['screenshots/TC004/Screenshot_TC004_CreateDropdown.png', 'screenshots/TC004/Screenshot_TC004_BoardCreationModal.png', 'screenshots/TC004/Screenshot_TC004_NewBoardCreated.png', 'screenshots/TC004/Screenshot_TC004_BoardInDashboard.png', 'screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png', 'screenshots/TC004/Screenshot_TC004_Bug.png'], ['Create Dropdown Menu', 'Board Creation Modal', 'New Board Created', 'Board in Dashboard', 'API Response - Board Name', 'Bug - Background Color Issue'])">
<img src="screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png" alt="API Response - Board Name" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">API Response - Board Name</div>
<div class="gallery-caption-desc">DevTools Network tab showing board creation API response</div>
</div>
</div>
<div class="gallery-item" data-category="bug" onclick="openLightbox('screenshots/TC004/Screenshot_TC004_Bug.png', 'Bug - Background Color Issue', 5, ['screenshots/TC004/Screenshot_TC004_CreateDropdown.png', 'screenshots/TC004/Screenshot_TC004_BoardCreationModal.png', 'screenshots/TC004/Screenshot_TC004_NewBoardCreated.png', 'screenshots/TC004/Screenshot_TC004_BoardInDashboard.png', 'screenshots/TC004/Screenshot_TC004_APIResponse_Boardname.png', 'screenshots/TC004/Screenshot_TC004_Bug.png'], ['Create Dropdown Menu', 'Board Creation Modal', 'New Board Created', 'Board in Dashboard', 'API Response - Board Name', 'Bug - Background Color Issue'])">
<img src="screenshots/TC004/Screenshot_TC004_Bug.png" alt="Bug - Background Color Issue" class="gallery-image">
<div class="gallery-overlay">
<div class="gallery-overlay-icon"></div>
</div>
<div class="gallery-caption">
<div class="gallery-caption-title">Bug - Background Color Issue</div>
<div class="gallery-caption-desc">Board shows gradient background instead of selected white</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- TC005 - CARD MANAGEMENT TEST -->
<div id="tc005" class="template-section">
<div class="container">
<button class="back-nav" onclick="showTemplate('main')">← Back to Main</button>
<div class="test-case-detail">
<div class="test-case-header">
<h1 class="test-case-id-title">TC005</h1>
<p class="test-case-subtitle">Card lifecycle management and data persistence</p>
<div class="test-meta">
<div class="meta-item">
<div class="meta-label">Priority</div>
<div class="meta-value">High</div>
</div>
<div class="meta-item">
<div class="meta-label">Test Type</div>
<div class="meta-value">Hybrid (Scripted + Exploratory)</div>
</div>
<div class="meta-item">
<div class="meta-label">Feature</div>
<div class="meta-value">Card Management</div>
</div>
<div class="meta-item">
<div class="meta-label">Status</div>
<div class="meta-value"><span class="status-badge status-pass">Pass</span></div>
</div>
<div class="meta-item">
<div class="meta-label">Created By</div>
<div class="meta-value">Patrycja Gontarek</div>
</div>
<div class="meta-item">
<div class="meta-label">Executed Date</div>
<div class="meta-value">06/06/2025</div>
</div>
</div>
</div>
<h2 class="section-header">Test Objective</h2>
<p>To verify that users can successfully create, modify, and manage cards throughout their complete lifecycle, ensuring data integrity, proper state transitions, and business rule compliance across different user interactions and system conditions.</p>
<h2 class="section-header">Test Steps - Part A: Core Functionality (Key Steps)</h2>
<table class="test-steps-table">
<thead>
<tr>
<th>Step No.</th>
<th>Test Steps</th>
<th>Expected Result</th>
<th>Actual Result</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>In "To Do" list, click "Add a card" button</td>
<td>Card creation interface appears with text input field active</td>
<td>Card creation interface appeared with "Enter a title or paste a link" input field</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>2</td>
<td>Type "Review QA documentation" and click "Add a card"</td>
<td>Card created instantly, appears in "To Do" list with entered title</td>
<td>Card "Review QA documentation" created in "To Do" list with interactive elements on hover</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>5</td>
<td>Add checklist "Documentation Tasks" with 3 items</td>
<td>Checklist created with 3 unchecked items, progress shows 0/3</td>
<td>Checklist "Documentation Tasks" created with 3 items, showing 0% progress</td>
<td><span class="status-badge status-pass">Pass</span></td>
</tr>
<tr>
<td>7</td>