­
agile

[Test] 如何讓你的自動化測試結果被團隊看見 - How to Make Your Test Automation Efforts Visible to Everyone on the Team

凌晨2:16
如何讓自己的自動化測試結果被團隊看見 最近讀到一篇文章在討論 如何讓你的自動化測試結果被團隊看見 (How to Make Your Test Automation Efforts Visible to Everyone on the Team), 覺得蠻有趣的, 所以來寫篇心得吧 :) 文章裡面提到許多的論點, 都能夠引起自己心裡的共鳴. 在作者的專案中, 他覺得自己的測試和自動化測試很不容易被團隊發現, 似乎沒有人在意測試結果這件事, 直到要出版的前一刻才會被重視. 然後突然間, 整個團隊中的成員就會開始討論, 為什麼這些需求沒有 PASS? 為什麼有些需求沒有被驗證到? 更很有趣的是作者也發現不是只有他一個人有這種感覺 (謎之音 : 應該是幹過 QA 的人都知道這檔事). 事實上, 作者在 webinar 也上面發問過一個問題 : 'How visible are your current testing and automation efforts to everyone in the organization? (你現在的組織內有多少人在做測試及自動化的工作?) 有趣的結論是 :  43.5% answered “Somewhat visible.” 26.5% answered...

Read More...

誰說QA不會CODING

[Calabash] How to add android system log into calabash-android test scenarios

晚上11:25
How to add android system log into calabash-android test scenarios Add follow adb command into app_life_cycle_hook.rb file, and the system log will log into file for each scenarios Before do |scenario| `#{adb_command} logcat -c` # clears logcat output #Start Test Server start_test_server_in_background end After do |scenario| `#{adb_command} logcat -v time 2>&1 -d > $REPORT_PATH/sys_log.txt` # dumps log in time format to file and exits embed('sys_log.txt',...

Read More...