E2E Test Builder
An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.
E2E Test Builderคืออะไร?
E2E Test Builder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cuubas และคุณลักษณะหลักของมันคือ "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย E2E Test Builder
ดาวน์โหลดไฟล์ส่วนขยาย E2E Test Builder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Partial alternative to Selenium IDE Firefox extension. For more information/issues/feature requests please refer to GitHub repository.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | E2E Test Builder |
ID | pamfkepooglpdkepmlopejpmcpggaobo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/e2e-test-builder/pamfkepooglpdkepmlopejpmcpggaobo |
คำอธิบาย | An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases. |
ขนาดไฟล์ | 509 KB |
จำนวนการติดตั้ง | 306 |
เวอร์ชันปัจจุบัน | 1.4.1 |
อัปเดตครั้งล่าสุด | 2022-10-10 |
วันที่เผยแพร่ | 2019-01-22 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Cuubas |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/cuubas/e2e-test-builder |
URL หน้าช่วยเหลือ | https://github.com/cuubas/e2e-test-builder/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "E2E Test Builder", "description": "An extension which allows you to record interaction and perform various assertions. Compatible with Selenium IDE test cases.", "version": "1.4.1", "browser_action": { "default_icon": "assets\/[email protected]" }, "icons": { "16": "assets\/[email protected]", "32": "assets\/[email protected]", "48": "assets\/[email protected]", "128": "assets\/[email protected]", "256": "assets\/[email protected]", "512": "assets\/[email protected]" }, "background": { "scripts": [ "background\/runtime.js", "background\/main.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "js": [ "content\/runtime.js", "content\/main.js" ], "all_frames()": true } ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "contextMenus" ] } |