Watir - ประสิทธิภาพของเพจ
คุณสมบัติประสิทธิภาพของ Watir Page ช่วยให้คุณติดตามเมตริกเวลาตอบสนองและทำงานได้ดีใน Chrome, Firefox, IE9 ขึ้นไป เบราว์เซอร์ Safari ยังไม่รองรับในตอนนี้
ให้เรามาดูวิธีใช้คุณสมบัตินี้อย่างละเอียดยิ่งขึ้น ในการใช้งานเราจำเป็นต้องติดตั้ง watir-performance โดยใช้ gem ดังที่แสดงด้านล่าง -
คำสั่ง
gem install watir-performance
เราติดตั้ง watir-performance เสร็จเรียบร้อยแล้ว เมตริกที่รองรับ ได้แก่ -
- summary
- navigation
- memory
- Timing
ตัวอย่างการทำงานโดยใช้ watir-performance จะกล่าวถึงที่นี่ ที่นี่เราจะตรวจสอบเวลาตอบสนองของไซต์ - www.tutorialspoint.comตามที่แสดงด้านล่าง -
require 'watir'
require 'watir-performance'
10.times do
b = Watir::Browser.new :chrome
b.goto 'https://www.tutorialspoint.com'
load_secs = b.performance.summary[:response_time] / 1000
puts "Load Time: #{load_secs} seconds."
b.close
end
เอาท์พุท
Load Time: 7 seconds.
Load Time: 7 seconds.
Load Time: 5 seconds.
Load Time: 5 seconds.
Load Time: 6 seconds.
Load Time: 5 seconds.
Load Time: 5 seconds.
Load Time: 13 seconds.
Load Time: 12 seconds.
Load Time: 5 seconds.
ใช้ performance.timing
require 'watir'
require 'watir-performance'
b = Watir::Browser.new :chrome
b.goto 'https://www.tutorialspoint.com'
load_secs = b.performance.timing[:response_end] - b.performance.timing[:response_start]
puts "Time taken to respond is #{load_secs} seconds."
b.close
เอาท์พุท
Time taken to respond is 41 seconds.
ใช้ performance.navigation
require 'watir'
require 'watir-performance'
b = Watir::Browser.new :chrome
b.goto 'https://www.tutorialspoint.com'
perf_nav = b.performance.navigation
puts "#{perf_nav}"
b.close
เอาท์พุท
{:type_back_forward=>2, :type_navigate=>0, :type_reload=>1,
:type_reserved=>255, :redirect_count=>0, :to_json=>{}, :type=>0}
การใช้ performance.memory
require 'watir'
require 'watir-performance'
b = Watir::Browser.new :chrome
b.goto 'https://www.tutorialspoint.com'
memory_used = b.performance.memory
puts "#{memory_used}"
b.close
เอาท์พุท
{:js_heap_size_limit=>2, :type_navigate=>0, :type_reload=>1, :ty2136997888,
:total_js_heap_size=>2, :type_navigate=>0, :type_reload=>1, :ty12990756,
:used_js_heap_size=>2, :type_navigate=>0, :type_reload=>1, :ty7127092}