Robot Framework เครื่องมือสำหรับช่วยพัฒนา application ที่ได้รับความนิยมในระดับนึง เพราะด้วยความเป็น opensource และง่ายต่อการนำไปใช้งาน จึงทำให้ Robot Framework ยังได้รับความนิยมจนถึงปัจจุบัน
Robot Framework ถูกพัฒนาจากภาษาโปรแกรมมิ่ง Python ฉะนั้นเมื่อนำไปใช้งาน จำเป็นต้องติดตั้ง Python ให้เรียบร้อยก่อนการเริ่มใช้งาน อีกทั้งความเป็น keyword approach กล่าวคือ keyword (function, method แล้วแต่จะเรียก) มีความเป็นภาษาอ่านที่เข้าใจง่าย
แนะนำ Scripts ของ Robot ที่จำเป็นต้องรู้
- Settings (*** Settings ***) เรียกใช้ Library ต่าง ๆ เช่น
*** Settings ***
Library Collections
Library String
Library DateTime
Library ../pythonlibs/date_util.py
Variables ./commons.yaml
Variables ../resources/configs/${ENV}/env.yaml
Resource ../keywords/api_keywords.robot
- Variables (*** Variables ***) สร้างกำหนด Variable global scope
*** Variables ***
${DIRECTORY_CSV} ../resources/testdata/csv
- Test Cases (*** Test Cases ***) กำหนดสร้าง testcases ต่าง ๆ ที่จำใช้ทดสอบระบบ
*** Test Cases ***
CASE_00001 lesson 1 Log to console
Log To Console 'Hello World 1'
CASE_00002 lesson 2 use external keywords with void
Print Message from agruments 'Hello world 2'
CASE_00003 lesson 3 use external keywords with return
${result}= Calculate value 5 10
Log To Console 'Result from Calculate value keywords::=='${result}
CASE_00004 lesson 4 get data from yaml file
Log To Console 'request ::='${test_data.CASE_00004.request}
Log To Console 'expect_data ::=='${test_data.CASE_00004.expect_data}
CASE_00005 lesson 5 get env global file
Log To Console 'app_name ::=='${app_name}
CASE_00006 lesson 6 use custom lib keywords
${now}= get_nowdate
Log To Console 'now ::=='${now}
CASE_00007 lesson 7 use variable with resource environnment
Log To Console 'welcome_message from ${ENV}::=='${welcome_message}
- Keywords (*** Keywords ***) กำหนด keywords ของเรา เหมือนการสร้าง function ของ Javascript หรือ method ของภาษา Java
*** Keywords ***
Print Message from agruments
[Documentation] Print Message from agruments
[Arguments] ${arg0}
Log To Console 'Result from Print Message from agruments keywords ::=='${arg0}
Calculate value
[Documentation] Calculate value
[Arguments] ${a} ${b}
${result}= Evaluate ${a}+${b}
[Return] ${result}
4 scripts ที่แนะนำมา จะค่อนข้างใช้งานบ่อย ๆ ที่สุด สำหรับ EP ถัดไปจะพาทุกคนมาเริ่มวางโครงสร้างของ Project เพิ่มเริ่มการพัฒนาด้วย Robot Framework กันครับ
EP2 Robot Framework เริ่มต้น กำหนดโครงสร้างโปรเจค EP2
EP3 Robot Framework อธิบายการทำงาน EP3
EP4 Robot Framework แนะนำ Pycharm IDE ช่วยให้เขียน Robot ง่ายยิ่งขึ้น EP4