-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathpast.yml
More file actions
6144 lines (5090 loc) · 200 KB
/
Copy pathpast.yml
File metadata and controls
6144 lines (5090 loc) · 200 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
- name: Test Automation Summit Chennai 2026
location: Chennai, India
dates: "February 19, 2026"
url: https://www.testingmind.com/event/test-automation-summit-chennai/?utm_source=testingconferences
twitter: TestingMindCon
- name: Test Automation Summit Bangalore 2026
location: Bangalore, India
dates: "February 19, 2026"
url: https://www.testingmind.com/event/test-automation-summit-bangalore/?utm_source=testingconferences
twitter: TestingMindCon
- name: Robocon 2026 In Person
location: Helsinki, Finland
dates: "February 10-13, 2026"
url: https://www.robocon.io/?utm_source=testingconferences
- name: Automation Guild 2026
location: Online
dates: "February 9-13, 2026"
url: https://testguild.com/ag-2026/?utm_source=testingconferences
twitter: testguilds
- name: SoCraTes Conference Switzerland 2026
location: Monastery Ilanz, Switzerland
dates: January 29 - February 1, 2026
url: http://www.socrates-ch.org/?utm_source=testingconferences
- name: PNSQC Quality Jam 2026
location: Portland, OR, USA and Online
dates: "January 22, 2026"
url: https://mms.pnsqc.org/Calendar/moreinfo.php?org_id=PNSQ&eventid=190750?utm_source=testingconferences
- name: "Workshop: Find more bugs with Test Gap Analysis"
location: Online
dates: "December 3, 2025"
url: https://teamscale.com/events/tga-2025-12?utm_source=testingconferences
- name: QA Global Summit 25
location: Online
dates: "November 26, 2025"
url: https://events.geekle.us/qa/?utm_source=testingconferences
- name: The QA Healthcare & Insurance Forum 2025
location: London, UK
dates: "November 26, 2025"
url: https://qafinancial.zohobackstage.eu/QAHealthcareForumLondon2025#/?affl=softwaretestingemail
- name: Agile Testing Days
location: Potsdam, Germany
dates: "November 24-27, 2025"
url: https://agiletestingdays.com/?utm_source=testingconferences
twitter: AgileTD
- name: Testing Assembly
location: Helsinki, Finland
dates: "November 20-21, 2025"
url: https://testingassembly.fistb.fi/?utm_source=testingconferences
- name: Tokyo Test Fest
location: Tokyo, Japan
dates: "November 14, 2025"
url: https://www.tokyotestfest.com/?utm_source=testingconferences
twitter: tokyotestfest
- name: Testing United 2025
location: Milan, Italy
dates: "November 13-14, 2025"
url: https://www.testingunited.com/?utm_source=testingconferences
twitter: testing_united
- name: Software-QS-Tag 2025
location: Möhrendorf, Germany
dates: "November 12-13, 2025"
url: https://www.qs-tag.de/?utm_source=testingconferences
- name: Quality Sense Conf 2025
location: Montevideo, Uruguay
dates: "November 11, 2025"
url: https://qualitysenseconf.com/?utm_source=testingconferences
- name: AutomationSTAR 2025
location: Amsterdam, The Netherlands
dates: "November 10-11, 2025"
url: https://automation.eurostarsoftwaretesting.com/?utm_source=testingconferences
twitter: esconfs
- name: WOPR Latam 04
location: Montevideo, UY
dates: "November 5-7, 2025"
url: https://performance-workshop.org/?utm_source=testingconferences
- name: STARCANADA 2025
location: Toronto, Canada
dates: "October 27-30, 2025"
url: https://starcanada.techwell.com/?utm_source=testingconferences
twitter: TechWell
- name: Testing Stage LATAM
location: Online
dates: "October 24, 2025"
url: https://latamtesting.com/?utm_source=testingconferences
twitter: testingstage
- name: Wrobocon 2025 - Robot Framework Conference
location: Online
dates: "October 23, 2025"
url: https://wrobocon.eu/?utm_source=testingconferences
- name: QA&TEST International Conference on Software QA & Testing on Embedded Systems
location: Bilbao, Spain
dates: "October 22-24, 2025"
url: https://www.qatest.org/?lang=en?utm_source=testingconferences
twitter: QATestBilbao
- name: TestCon Europe 2025
location: Vilnius, Lithuania
dates: "October 21-24, 2025"
url: https://testcon.lt/?utm_source=testingconferences
- name: CypressConf 2025
location: Online
dates: "October 21-22, 2025"
url: https://cypress.registration.goldcast.io/events/5e06455f-45f2-49c3-98dd-e0ae952e79a0?__hstc=204449871.f2117c4cea0098a12902ced8536e8ec7.1751241536846.1751241536846.1751241536846.1&__hssc=204449871.1.1751241536846&__hsfp=287177776?utm_source=testingconferences
- name: "Quality Beacon - Lighting the Path for Next-Gen Testing"
location: Copenhagen, Denmark
dates: "October 20-21, 2025"
url: https://www.dstb.dk/konferencer/2025/?utm_source=testingconferences
- name: HUSTEF Software Testing Conference 2025
location: Budapest, Hungary
dates: "October 14-16, 2025"
url: https://hustef.hu/?utm_source=testingconferences
twitter: HunTestingBoard
- name: Pacific Northwest Software Quality Conference (PNSQC) 2025
location: Portland, Oregon, USA and Online
dates: "October 13-15, 2025"
url: https://www.pnsqc.org/?utm_source=testingconferences
twitter: PNSQC
- name: "TestFlix 2025 - World’s Leading Virtual Software Testing Conference"
location: Online
dates: "October 10-11, 2025"
url: https://www.thetesttribe.com/testflix/?utm_source=testingconferences
- name: TestSociety
location: Lisboa, Portugal
dates: "October 10, 2025"
url: https://www.testsociety.pt/?utm_source=testingconferences
- name: Testing Talks 2025
location: Melbourne, Australia
dates: "October 9, 2025"
url: https://www.testingtalks.com.au/upcoming-events/testing-talks-conference-2025-melbourne?utm_source=testingconferences
- name: TestBash Brighton 2025
location: Brighton, UK
dates: "October 1-2, 2025"
url: https://www.ministryoftesting.com/events/testbash-brighton-2025?utm_source=testingconferences
- name: VLCTESTING 2025
location: Valencia, Spain (October 1) and Online (October 2 - free)
dates: "October 1-2, 2025"
url: https://vlctesting.es/?utm_source=testingconferences
- name: "QA: Challenge Accepted 2025 - The Elevation"
location: Sofia, Bulgaria and Online
dates: "September 27, 2025"
url: https://www.qachallengeaccepted.com/?utm_source=testingconferences
twitter: qachallenge
- name: SEETEST 2025
location: Sofia, Bulgaria and Online
dates: "September 25-26, 2025"
url: https://www.seetest.org/?utm_source=testingconferences
- name: Tesena Fest 2025
location: Prague, Czech Republic
dates: "September 24-25, 2025"
url: https://www.tesena.com/tesena-fest-2025/a-189/?utm_source=testingconferences
- name: TACON 2025
location: Leipzig, Germany
dates: "September 23-24, 2025"
url: https://tacon-konferenz.de?utm_source=testingconferences
- name: Targeting Quality 2025
location: Cambridge, Ontario, Canada
dates: September 22-23, 2025
url: https://targetingquality.ca/?utm_source=testingconferences
- name: STARWEST 2025
location: Anaheim, CA, USA and Online
dates: "September 21-26, 2025"
url: https://starwest.techwell.com/?utm_source=testingconferences
twitter: TechWell
- name: STeP-IN SUMMIT 2025 - Asia's Largest Software Testing Conference
location: Bengaluru, India
dates: "September 19, 2025"
url: https://stepinsummit.stepinforum.org/?utm_source=testingconferences
- name: The QA Financial Forum London 2025
location: London, UK
dates: "September 18, 2025"
url: https://qafinancial.zohobackstage.eu/TheQAFinancialForumLondon2025#/?affl=softwaretestingemail
status: <a href="https://qafinancial.zohobackstage.eu/TheQAFinancialForumLondon2025#/?affl=softwaretestingemail" target="_blank">Registration is Open</a>
- name: Hands-On Testing 2025
location: Guadalajara, Mexico and Online
dates: "September 17-20, 2025"
url: https://handsontesting.com/?utm_source=testingconferences
twitter: handsontesting
- name: IFIP-ICTSS 2025 (International Conference on Testing Software and Systems)
location: Limassol, Cyprus
dates: "September 17-19, 2025"
url: https://conf.researchr.org/home/ictss-2025?utm_source=testingconferences
twitter: ICTSSConf
- name: Test Automation Summit Dubai 2025
location: Dubai, UAE
dates: "September 16, 2025"
url: https://www.testingmind.com/event/test-automation-summit-Dubai/?utm_source=testingconferences
twitter: testingmindcon
- name: OnlineTestConf
location: Online
dates: "September 15, 2025"
url: https://www.onlinetestconf.com/?utm_source=testingconferences
twitter: OnlineTestConf
- name: Test Automation Summit New Jersey 2025
location: Jersey City, NJ, USA
dates: "September 12, 2025"
url: https://www.testingmind.com/event/test-automation-summit-new-jersey/?utm_source=testingconferences
twitter: testingmindcon
- name: TSQA 2025 - Battle of the Bands
location: Raleigh, NC, USA
dates: "September 11-12, 2025"
url: https://tsqa.org/tsqa-2025?utm_source=testingconferences
- name: Test Automation Summit Boston 2025
location: Boston, MA, USA
dates: "September 10, 2025"
url: https://www.testingmind.com/event/test-automation-summit-boston/?utm_source=testingconferences
twitter: testingmindcon
- name: SOFTECAsia 2025
location: Kuala Lumpur, Malaysia
dates: "September 9-10, 2025"
url: https://mstb.org/softecasia2025/??utm_source=testingconferences
- name: TestingUY 2025
location: Montevideo, Uruguay
dates: "September 4, 2025"
url: https://testinguy.org/edition-2025/?utm_source=testingconferences
twitter: testingUY
- name: CAST 2025
location: Silicon Slopes, UT, USA and Virtual
dates: "August 25-27, 2025"
url: https://associationforsoftwaretesting.org/conference/?utm_source=testingconferences
twitter: AST_News
- name: Testμ Conference 2025
location: Online
dates: "August 19-21, 2025"
url: https://www.lambdatest.com/testmuconf-2025?utm_source=STC&utm_medium=organic&utm_content=testmu_2025
twitter: lambdatesting
- name: Testing Talks 2025
location: Sydney, Australia
dates: "July 31, 2025"
url: https://www.testingtalks.com.au/upcoming-events/testing-talks-conference-2025-sydney?utm_source=testingconferences
- name: "Sparks: A conference for people who take Testing seriously by Synapse QA"
location: Kuala Lumpur, Malaysia
dates: "July 31, 2025"
url: https://synapse-qa.com/sparks/?utm_source=testingconferences
twitter: synapse_qa
- name: "TribeQonf 2025 - Bringing Together India's Best Testing Minds"
location: Bengaluru, India
dates: "July 11-12, 2025"
url: https://www.thetesttribe.com/tribeqonf/?utm_source=testingconferences
- name: QA or the Highway
location: Columbus, OH
dates: "June 27, 2025"
url: https://www.qaorthehwy.com?utm_source=testingconferences
twitter: qaorthehighway
- name: "Workshop: Everyone wants to shift left, but our tests are just too slow!"
location: Online
dates: "June 25, 2025"
url: https://tmscl.me/ts-2025-06-tc
- name: "SIGiST Summer 2025 Conference - Finding Calm in Chaos: Applying Testing to a Changing World"
location: London, UK
dates: "June 19, 2025"
url: https://www.bcs.org/membership-and-registrations/member-communities/software-testing-specialist-group/conferences/bcs-sigist-summer-conference-2025/?utm_source=testingconferences
- name: Innovate QA Conference 2025
location: Seattle, WA, USA 🇺🇸
dates: "June 05, 2025"
url: https://innovateqaevents.com?utm_source=testingconferences
- name: EuroSTAR 2025 Software Testing Conference
location: Edinburgh, Scotland
dates: "June 3-6, 2025"
url: https://conference.eurostarsoftwaretesting.com/?utm_source=testingconferences
twitter: esconfs
- name: GreaTest Quality Convention 2025
location: Zürich, Switzerland
dates: "May 23, 2025"
url: https://www.greatestquality.ch/?utm_source=testingconferences
twitter: gtq_con
- name: Software Quality Days
location: Munich, Germany and Online
dates: "May 20-22, 2025"
url: https://www.software-quality-days.com/en/?utm_source=testingconferences
- name: "expo:QA 25"
location: Madrid, Spain
dates: "May 20-22, 2025"
url: https://expoqa.eu/?utm_source=testingconferences
twitter: expoqa
- name: Test Automation Summit Salt Lake 2025
location: Salt Lake City, UT, USA
dates: "May 15, 2025"
url: https://www.testingmind.com/event/test-automation-summit-salt-lake/?utm_source=testingconferences
twitter: testingmindcon
- name: Test Coast 2025
location: Göteborg, Sweden
dates: "May 15, 2025"
url: https://testscouts.se/testcoast/?utm_source=testingconferences
- name: Nordic Testing Days (NTD) 2025
location: Tallinn, Estonia
dates: "May 14-16, 2025"
url: http://nordictestingdays.eu/?utm_source=testingconferences
twitter: nordictestdays
- name: The QA Financial Forum New York 2025
location: New York, NY, USA
dates: "May 14, 2025"
url: https://qafinancial.zohobackstage.eu/QAFinancialE-commerceForumNewYork2025#/?affl=softwaretestingemail
- name: Testnet Spring Evenet
location: Nieuwegein, Netherlands
dates: "May 14, 2025"
url: https://www.testnet.org/evenement/entry/25926/?evenement=voorjaarsevenement-2025?utm_source=testingconferences
- name: Test Automation Summit San Diego Online 2025
location: San Diego, CA, USA
dates: "May 13, 2025"
url: https://www.testingmind.com/event/test-automation-summit-san-diego/?utm_source=testingconferences
twitter: testingmindcon
- name: STAREAST 2025
location: Orlando, FL, USA and Online
dates: "April 27 - May 2, 2025"
url: https://stareast.techwell.com?utm_source=testingconferences
twitter: TechWell
- name: TestMass
location: Odijk, Netherlands
dates: "April 22, 2025"
url: https://www.testmass.org?utm_source=testingconferences
- name: QonfX 2025 Virtual Conference
location: Online
dates: "April 12-13, 2025"
url: https://www.thetesttribe.com/qonfx/virtual/?utm_source=testingconferences
- name: "Agile DevOps: Testing the Future of Software Delivery"
location: Bangalore, India
dates: "April 11, 2025"
url: https://www.navigoseminars.com/agile-devops-bangalore?utm_source=testingconferences
- name: QonfX 2025
location: Toronto, Berlin, and San Francisco
dates: "April 9-11, 2025"
url: https://www.thetesttribe.com/qonfx/?utm_source=testingconferences
- name: Swiss Testing Days 2025
location: Zurich, Switzerland
dates: "April 3, 2025"
url: https://swisstestingday.ch/?utm_source=testingconferences
- name: 11th UCAAT - User Conference on Advanced Automated Testing 2025
location: Thessaloniki, Greece
dates: "April 1-3, 2025"
url: https://www.etsi.org/events/upcoming-events/2420-2025-04-11th-ucaat-user-conference-on-advanced-automated-testing#pane-7/?utm_source=testingconferences
- name: WOPR Latam 03
location: Lima, PE
dates: "March 31 - April 2, 2025"
url: https://performance-workshop.org/
- name: SeleniumConf & AppiumConf 2025
location: Valencia, ES
dates: "March 26-28, 2025"
url: https://seleniumconf.com/?utm_source=testingconferences
twitter: seleniumconf
- name: ParisTestConf 2025
location: Paris, FR
dates: "March 25, 2025"
url: https://paristestconf.com/?utm_source=testingconferences
- name: Testing Peers Conference 2025
location: Nottingham, UK
dates: "March 13, 2025"
url: https://testingpeerscon.com/?utm_source=testingconferences
twitter: testingpeers
- name: Test Automation Days 2025
location: Rotterdam, the Netherlands
dates: "March 5-6, 2025"
url: https://www.testautomationdays.com?utm_source=testingconferences
twitter: testautomationd
- name: "Continuous Innovation: Mastering DevOps & Testing"
location: Chennai, India
dates: "February 20, 2025"
url: https://www.navigoseminars.com/adt-chennai?utm_source=testingconferences
twitter: NAVIGOSeminars
- name: RoboCon 2025 - Robot Framework Conference
location: Helsinki, Finland
dates: "February 13-14, 2025"
url: https://robocon.io/?utm_source=testingconferences
- name: Automation Guild 2025
location: Online
dates: "February 10-14, 2025"
url: https://testguild.com/automation-guild-2025/?utm_source=testingconferences&utm_medium=organic&utm_content=ag_2025
twitter: testguilds
- name: Agile Testing Alliance Global Testing Retreat 2024
location: Pune, India
dates: "December 8, 2024"
url: https://gtr.agiletestingalliance.org?utm_source=testingconferences
twitter: TestingRetreat
- name: TestDag (Dutch Testing Day) 2024
location: Amsterdam, The Netherlands
dates: "November 29, 2024"
url: https://testdag.nl
- name: Testing Portugal Conference
location: Lisbon, Portugal
dates: "November 26, 2024"
url: https://testingportugal.pstqb.pt/en/?utm_source=testingconferences
twitter: PSTQB
- name: Workshop - Hands on with Selenium 4 in Java
location: Lisbon, Portugal
dates: "November 25, 2024"
url: https://testingportugal.pstqb.pt/en/workshop-hands-on-with-selenium-4-in-java
twitter: PSTQB
- name: Workshop - The truth about risk-based testing
location: Lisbon, Portugal
dates: "November 25, 2024"
url: https://testingportugal.pstqb.pt/en/workshop-the-truth-about-risk-based-testing/
twitter: PSTQB
- name: Workshop - AI-Augmented Testing
location: Lisbon, Portugal
dates: "November 25, 2024"
url: https://testingportugal.pstqb.pt/en/workshop-ai-augmented-testing/
twitter: PSTQB
- name: Workshop - A Beginner's Guide to AI in Testing
location: Lisbon, Portugal
dates: "November 25, 2024"
url: https://testingportugal.pstqb.pt/en/workshop-a-beginners-guide-to-ai-in-testing/
twitter: PSTQB
- name: Next Generation Testing Conference 2024
location: Bangalore, India
dates: "November 21, 2024"
url: https://www.navigoseminars.com/next-generation-testing
- name: Agile Testing Days 2024
location: Potsdam, Germany
dates: "November 19-22, 2024"
url: https://agiletestingdays.com/?utm_source=testingconferences
- name: Agile Testing Alliance Global Testing Retreat 2024
location: Online
dates: "November 16-17, 2024"
url: https://gtr.agiletestingalliance.org?utm_source=testingconferences
twitter: TestingRetreat
- name: Tokyo Test Fest
location: Tokyo, Japan
dates: "November 15, 2024"
url: https://www.tokyotestfest.com/?utm_source=testingconferences
twitter: tokyotestfest
- name: OnlineTestConf
location: Online
dates: "November 12-13, 2024"
url: https://www.onlinetestconf.com/?utm_source=testingconferences
twitter: OnlineTestConf
- name: Testing United 2024
location: Vienna, Austria
dates: "November 7-8, 2024"
url: https://www.testingunited.com/?utm_source=testingconferences
twitter: testing_united
- name: TestWarez 2024
location: Sopot, Poland
dates: "November 6-8, 2024"
url: https://2024.testwarez.pl/?utm_source=testingconferences
- name: Wrobocon 2024 - Polish Robot Framework Conference
location: Online
dates: "October 24, 2024"
url: https://wrobocon.eu/?utm_source=testingconferences
- name: Testnet Fall Event 2024
location: Utrecht, Netherlands
dates: "October 9, 2024"
url: https://www.testnet.org/evenement/entry/17596/?evenement=najaarsevenement
- name: Workshop on Performance and Reliability - Latinoamerica (WOPR Latam) #2
location: Medellín, Colombia
dates: "October 23-25, 2024"
url: https://performance-workshop.org/wopr-latam/?utm_source=testingconferences
- name: TestCon Europe 2024
location: Vilnius, Lithuania and Online
dates: "October 22-25, 2024"
url: https://testcon.lt/?utm_source=testingconferences
- name: CypressConf 2024
location: Online
dates: "October 22-23, 2024"
url: https://cypress.registration.goldcast.io/events/d976c513-3bf1-4f6d-b83d-856c63b98f83#Agenda
- name: Quality Sense Conf 2024
location: Medellín, Colombia & Online
dates: "October 21-22, 2024"
url: https://qualitysenseconf.com/&utm_source=testingconferences
twitter: abstractaus
- name: TestFlix
location: Online
dates: "October 19-20, 2024"
url: https://www.thetesttribe.com/testflix/?utm_source=testingconferences
twitter: the_test_tribe
- name: Testing Talks 2024
location: Melbourne, Australia
dates: "October 17, 2024"
url: https://www.testingtalks.com.au/upcoming-events/testing-talks-conference-2024-melbourne
- name: Pacific Northwest Software Quality Conference (PNSQC) 2024
location: Portland, Oregon and Online
dates: "October 14-16, 2024"
url: https://www.pnsqc.org/?utm_source=testingconferences
twitter: PNSQC
- name: TestSociety
location: Porto, Portugal
dates: "October 11, 2024"
url: https://www.testsociety.pt/?utm_source=testingconferences
- name: Test İstanbul
location: Online
dates: "October 10-11, 2024"
url: https://testistanbul.org/?utm_source=testingconferences
- name: AutomationSTAR Test Automation Conference 2024
location: Vienna, Austria
dates: "October 9-10, 2024"
url: https://automation.eurostarsoftwaretesting.com/?utm_source=testingconferences
twitter: esconfs
- name: HUSTEF Software Testing Conference 2024
location: Budapest, Hungary
dates: "October 8-10, 2024"
url: https://hustef.hu/?utm_source=testingconferences
twitter: hustef
- name: Targeting Quality 2024
location: Cambridge, Ontario, Canada
dates: "September 30-October 1, 2024"
url: https://targetingquality.ca/?utm_source=testingconferences
- name: "QA: Challenge Accepted 2024 - The Anniversary"
location: Sofia, Bulgaria and Online
dates: "September 28, 2024"
url: https://www.qachallengeaccepted.com/?utm_source=testingconferences
twitter: qachallenge
- name: SEETEST 2024
location: Zagreb, Croatia and Online
dates: "September 25-27, 2024"
url: https://seetest.org/?utm_source=testingconferences
twitter: SEETESTConf
- name: Odin Testkonferansen Norway 2024
location: Oslo, Norway
dates: "September 26, 2024"
url: https://event.dataforeningen.no/odin2024/?utm_source=testingconferences
- name: STARWEST 2024
location: Anaheim, CA, USA and Online
dates: "September 22-27, 2024"
url: https://starwest.techwell.com/?utm_source=testingconferences
twitter: TechWell
- name: QX Day 2024 - Navigating the GenAI Era
location: Utrecht, Netherlands
dates: "November 9, 2024"
url: https://www.sogeti.nl/events/qx-day-2024-navigating-the-genai-era/
- name: SANAE BEER.EX 2024
location: Bratislava, Slovakia
dates: "September 18-19, 2024"
url: https://sanae.beer?utm_source=testingconferences
twitter: sanae_beer
- name: TACON 2024
location: Leipzig, Germany
dates: "September 18-19, 2024"
url: http://tacon-konferenz.de?utm_source=testingconferences
- name: Testit 2024
location: Malmö, Sweden
dates: "September 17, 2024"
url: https://www.knowit.eu/events/conference-testit?utm_source=testingconferences
twitter: testit
- name: Appium Conference 2024
location: Online
dates: "September 13, 2024"
url: https://appiumconf.com/?utm_source=testingconferences
twitter: appium_conf
- name: TestBash Brighton 2024
location: Brighton, UK
dates: "September 12-13, 2024"
url: https://www.ministryoftesting.com/events/testbash-brighton-2024?utm_medium=web&utm_source=testingconferences
video_url: https://www.ministryoftesting.com/collections/testbash-brighton-2024?utm_medium=web&utm_source=testingconferences
- name: Testμ 2024
location: Online
dates: "August 21-23, 2024"
url: https://www.lambdatest.com/testmuconf-2024?utm_source=STC&utm_medium=organic&utm_content=testmu_2024
twitter: lambdatesting
video_url: https://www.lambdatest.com/testmuconf-2024?utm_source=stc&utm_medium=header_stc&utm_campaign=aug&utm_term=kn&utm_content=testmu_conf
- name: Innovate QA
location: Seattle, WA, USA
dates: "August 22, 2024"
url: https://innovateqaevents.com/?utm_source=testingconferences
twitter: innovateqaevent
- name: Hands on Testing 2024
location: Mexico City, Mexico and Online
dates: "August 21-24, 2024"
url: https://handsontesting.com/?utm_source=testingconferences
twitter: handsontesting
- name: Abstracta Amplify
location: Tulsa, Oklahoma
dates: "August 20, 2024"
url: https://amplify.abstracta.us?utm_source=testingconferences
- name: Testing Talks 2024
location: Sydney, Australia
dates: "August 15, 2024"
url: https://www.testingtalks.com.au/upcoming-events/testing-talks-conference-2024-sydney?utm_source=testingconferences
- name: "ICSTS 2024: Software Testing Strategies Conference"
location: Amsterdam, Netherlands
dates: "August 5-6, 2024"
url: https://waset.org/software-testing-strategies-conference-in-august-2024-in-amsterdam?utm_source=testingconferences
- name: "ICSTP 2024: Software Testing Process Conference"
location: Amsterdam, Netherlands
dates: "August 5-6, 2024"
url: https://waset.org/software-testing-process-conference-in-august-2024-in-amsterdam?utm_source=testingconferences
- name: "Testing, Agile, DevOps & Low Code Showcase: Methods and Tools"
location: Pune, India
dates: "July 25, 2024"
url: https://conference.unicom.co.uk/2024/july/agile-devops-software-testing-conference/pune/?utm_source=testingconferences
twitter: UNICOMLearning
- name: TribeQonf
location: Bangalore, India
dates: "July 12-13, 2024"
url: https://www.thetesttribe.com/tribeqonf/?utm_source=testingconferences
twitter: the_test_tribe
- name: Selenium Conf 2024
location: Online
dates: "June 21, 2024"
url: https://2024.seleniumconf.in/?utm_source=testingconferences
twitter: seleniumconf
- name: QA or the Highway
location: Columbus, Ohio, USA
dates: "June 21, 2024"
url: https://www.qaorthehwy.com?utm_source=testingconferences
twitter: QAortheHighway
- name: "BCS SIGiST Summer Conference 2024 Quantum Leap: the Past, Present and Future of Testing"
location: Online and London, UK
dates: "June 19, 2024"
url: https://www.bcs.org/membership-and-registrations/member-communities/software-testing-specialist-group/conferences/bcs-sigist-summer-conference-2024/?utm_source=testingconferences
twitter: SIGiST
- name: Romanian Testing Conference
location: Romania
dates: "June 12-14, 2024"
url: https://romaniatesting.ro?utm_source=testingconferences
twitter: romaniatesting
- name: EuroSTAR Software Testing Conference 2024
location: Stockholm, Sweden
dates: "June 11-14, 2024"
url: https://conference.eurostarsoftwaretesting.com/?utm_source=testingconferences
twitter: esconfs
- name: WeTest.Athens 2024
location: Athens, Greece
dates: "June 7, 2024"
url: https://www.wetest-athens.gr/?utm_source=testingconferences
- name: GreaTest Quality Convention 2024
location: Zürich, Switzerland
dates: "June 7, 2024"
url: https://www.greatestquality.ch/?utm_source=testingconferences
twitter: gtq_con
- name: Nordic Testing Days (NTD) 2024
location: Tallinn, Estonia
dates: "June 5-7, 2024"
url: http://nordictestingdays.eu/?utm_source=testingconferences
twitter: nordictestdays
- name: Test Automation Days 2024
location: Rotterdam, the Netherlands
dates: "May 29-30, 2024"
url: https://www.testautomationdays.com?utm_source=testingconferences
twitter: testautomationd
- name: "expo:QA 24"
location: Madrid, Spain
dates: "May 28-30, 2024"
url: https://expoqa.eu/?utm_source=testingconferences
twitter: expoqa
- name: İstanbul Software Testing Conference
location: Istanbul, Turkey
dates: "May 23-24, 2024"
url: https://iststc.com/?utm_source=testingconferences
status: Registration is Open
- name: "Testing, Agile, DevOps & Low Code Showcase: Methods and Tools"
location: London, UK
dates: "May 23, 2024"
url: https://conference.unicom.co.uk/2024/may/agile-devops-software-testing-conference/london/?utm_source=testingconferences
twitter: UNICOMSeminars
status: Registration is Open
- name: The Premier Online Conference For Software Testing
location: Online
dates: "May 21-22, 2024"
url: https://live2test.com/?utm_source=testingconferences
twitter: TesterYouHQ
status: Registration is Open
- name: Mobile Testing & Experience Summit (MTES 24)
location: Online
dates: "May 16, 2024"
url: https://kobiton.registration.goldcast.io/events/70443ba0-d6ae-4035-9efa-924a4ffa60eb?utm_source=testingconferences
twitter: kobitonmobile
- name: Qualicon 2024
location: Online
dates: "May 15-16, 2024"
url: https://gamequality.org/qualicon/?utm_source=testingconferences
twitter: QualiconGlobal
- name: Testnet Spring Event 2024
location: Utrecht, Netherlands
dates: "May 15, 2024"
url: https://www.testnet.org/evenement/entry/17593/?evenement=voorjaarsevenement
- name: "POST/CON 24"
location: San Francisco, CA, USA
dates: "April 30 - May 1, 2024"
url: https://www.postman.com/postcon?utm_source=testingconferences
twitter: getpostman
- name: STAREAST 2024
location: Orlando, FL, USA and Online
dates: "April 28 - May 3, 2024"
url: https://stareast.techwell.com/pricing-packages?utm_source=testingconferences
twitter: TechWell
- name: "Testing, Agile, DevOps & Low Code Showcase: Exploring Good Practices"
location: Rotterdam, the Netherlands
dates: "April 25, 2024"
url: https://conference.unicom.co.uk/2024/march/agile-devops-software-testing-conference/rotterdam/?utm_source=testingconferences
twitter: UNICOMSeminars
- name: Test Coast 2024
location: Gothenburg, Sweden
dates: "April 25, 2024"
url: https://testscouts.se/testcoast?utm_source=testingconferences
twitter: testscouts
- name: QonfX
location: Online
dates: "April 20, 2024"
url: https://www.thetesttribe.com/qonfx/?utm_source=testingconferences
twitter: the_test_tribe
- name: "Testing, Agile, DevOps & Low Code Showcase: Exploring Good Practices"
location: Bengaluru, India
dates: "April 18, 2024"
url: https://www.unicomlearning.com/agile-devops-software-testing-conference/bengaluru-india-2024/?utm_source=testingconferences
twitter: UNICOMLearning
- name: Testing Peers Conference 2024
location: Nottingham, UK
dates: "March 14, 2024"
url: https://testingpeerscon.com/?utm_source=testingconferences
twitter: testingpeers
- name: "ICSTM 2024: Software Testing Methods Conference"
location: Miami, FL USA
dates: "March 11-12, 2024"
url: https://waset.org/software-testing-methods-conference-in-march-2024-in-miami?utm_source=testingconferences
- name: "ICGSDT 2024: Global Software Development and Testing Conference"
location: Istanbul, Turkey
dates: "March 11-12, 2024"
url: https://waset.org/global-software-development-and-testing-conference-in-march-2024-in-istanbul?utm_source=testingconferences
- name: "test:fest 2024"
location: Wrocław, Poland
dates: "March 2, 2024"
url: https://testfest.pl/?utm_source=testingconferences
twitter: test_fest_
- name: Worqference
location: Online
dates: "February 23-25, 2024"
url: https://www.thetesttribe.com/worqference/?utm_source=testingconferences
twitter: the_test_tribe
- name: Automation Guild 2024
location: Online
dates: "February 5-9, 2024"
url: https://www.testguild.com/ag-2024/?utm_source=testingconferences&utm_medium=organic&utm_content=ag_2024
twitter: testguilds
- name: Spartans Summit 2024 by LambdaTest
location: Online
dates: "February 6, 2024"
url: https://www.lambdatest.com/spartans-summit-2024?utm_source=STC&utm_medium=organic&utm_content=spartans_2024
twitter: lambdatesting
status: Registration is Open and Free
video_url: https://www.lambdatest.com/spartans-summit-2024
- name: SoCraTes Conference Switzerland 2024
location: Ilanz, Switzerland
dates: "February 1-4, 2024"
url: http://www.socrates-ch.org/?utm_source=testingconferences
twitter: SoCraTes_CH
- name: "ICSTA 2024: Software Testing and Applications Conference"
location: Rio de Janeiro, Brazil
dates: "February 1-2, 2024"
url: https://waset.org/software-testing-and-applications-conference-in-february-2024-in-rio-de-janeiro?utm_source=testingconferences
- name: "ICSTV 2024: Software Testing and Validation Conference"
location: Amsterdam, Netherlands
dates: "January 15-16, 2024"
url: https://waset.org/software-testing-and-validation-conference-in-january-2024-in-amsterdam?utm_source=testingconferences
- name: "ICSTTP 2024: Software Testing, Types and Process Conference"
location: London, England
dates: "January 15-16, 2024"
url: https://waset.org/software-testing-types-and-process-conference-in-january-2024-in-london?utm_source=testingconferences
- name: "ICSTM 2024: Software Testing and Methods Conference"
location: Bali, Indoneasia
dates: "January 11-12, 2024"
url: https://waset.org/software-testing-and-methods-conference-in-january-2024-in-bali?utm_source=testingconferences
- name: Testing Portugal Conference
location: Lisbon, Portugal
dates: "November 28, 2023"
url: https://testingportugal.pstqb.pt/?utm_source=testingconferences
twitter: PSTQB
- name: Test Automation & Digital QA Summit 2023
location: Manila, Philippines
dates: "November 24, 2023"
url: https://www.testingmind.com/event/tas2023/test-automation-summit-manila/?utm_source=testingconferences
twitter: testingmindcon
- name: TestBash Autumn 2023
location: Online
dates: "November 22-23, 2023"
url: https://www.ministryoftesting.com/events/testbash-autumn-2023?utm_medium=web&utm_source=testingconferences
twitter: ministryoftest
- name: AutomationSTAR 2023
location: Berlin, Germany
dates: "November 21-22, 2023"
url: https://automation.eurostarsoftwaretesting.com/?utm_source=testingconferences
twitter: esconfs
- name: Test Automation & Digital QA Summit 2023
location: Dubai, UAE
dates: "November 21, 2023"
url: https://www.testingmind.com/event/tas2023/test-automation-summit-dubai/?utm_source=testingconferences
twitter: testingmindcon
- name: Test Automation & Digital QA Summit 2023
location: Istanbul, Turkey
dates: "November 16, 2023"
url: https://www.testingmind.com/event/tas2023/test-automation-summit-istanbul/?utm_source=testingconferences
twitter: testingmindcon
- name: Test Automation & Digital QA Summit 2023
location: Tel Aviv, Israel
dates: "November 14, 2023"
url: https://www.testingmind.com/event/tas2023/test-automation-summit-tel-aviv/?utm_source=testingconferences
twitter: testingmindcon
- name: UCAAT 2023
location: Timisoara, Romania
dates: "November 14-16, 2023"
url: https://www.etsi.org/ucaat?utm_source=testingconferences
twitter: ETSI_STANDARDS
- name: Agile Testing Days (ATD) 2023
location: Potsdam, Germany
dates: "November 13-16, 2023"
url: https://agiletestingdays.com/?utm_source=testingconferences
twitter: AgileTD
- name: OnlineTestConf (OTC) 2023
location: Online
dates: "November 13-14, 2023"
url: https://www.onlinetestconf.com/?utm_source=testingconferences
twitter: OnlineTestConf
- name: Quality Sense Conf 2023
location: Santiago De Chile & Online
dates: "November 9-10, 2023"
url: https://qualitysenseconf.com/&utm_source=testingconferences
twitter: abstractaus
- name: SANAE BEER.EX 2023
location: Bratislava, Slovakia
dates: "November 8-9, 2023"
url: https://sanae.beer?utm_source=testingconferences
twitter: sanae_beer
- name: Workshop on Performance and Reliability - Latinoamerica (WOPR Latam)
location: Santiago de Chile, Chile
dates: "December 6-8, 2023"
url: https://performance-workshop.org/wopr-latam/?utm_source=testingconferences
twitter: WOPR_Workshop
- name: "ICSTM 2023: Software Testing Methods Conference"
location: San Francisco, CA, USA
dates: "November 6-7, 2023"
url: https://waset.org/software-testing-methods-conference-in-november-2023-in-san-francisco?utm_source=testingconferences
- name: "Future of Testing: AI in Automation"
location: Online
dates: "November 7, 2023"
url: https://applitools.com/future-of-testing-november-2023/?utm_source=other&utm_medium=web-referral&utm_content=virtual-event&utm_term=231107-softwaretestconf-free&utm_campaign=231107-future-of-testing-virtual-event
twitter: applitools
video_url: https://www.airmeet.com/e/9eb0d5d0-2720-11ee-84d7-9325a0e5398f