小言_互联网的博客

猿创征文|Cypress vs Playwright,谁是UI自动化测试王者?

432人阅读  评论(0)

        对于测试从业者来说,手工测试是一个绕不过去的坎。当年第一份工作进了一家互联网公司。入职第一天就被师父"拉去干活",至今印象深刻,是一个投顾管理平台(主要功能是为用户做理财产品和资讯推荐)。主要工作就是让我结合Excel里写好测试用例对web页面进行测试,说白了就是点点点。测试新人嘛,这些对于我来说挺新鲜的,但是随着时间的流逝,不到几个月就感觉有点不对了,手工测试完全是个机械化的工作,长此以往,会让你的大脑形成固化思维,在测试过程中大脑得到的测试价值边际效应是递减的,所以这也就解释了大部分手工测试人员普遍测试积极性不高,对未来充满焦虑的原因。

穷则思变,当时作为小白的我向身边的测试老手了解到可以学习UI自动化测试。那时起,测试之路仿佛有了一盏灯塔,让我对其充满向往。随着从事测试行业工作的年限增长,测试经验也越来越丰富,期间大大小小也做了非常多的项目。渐渐地对UI测试自动化也做了些许积累。

随着UI自动化技术的不断发展,此间涌现出一大批优秀的自动化框架,例如Selenium、UIrecoder、Cypress、Playwright等。市面上介绍Selenium、UIrecoder的文章比较多,而我此前也写过二者实践相关的文章,这里不做过多赘述,本文主要介绍近年大火的Cypress、Playwright框架,从二者提供的功能如元素交互、定位、处理告警、iframes、等待、requests进行对比,并通过案例详细呈现二者在使用上的区别。

回到10年前,如果自动化测试人员想编写E2E测试用例,或许只能选择Selenium别无他法。而有使用Selenium开发测试用例的同学大多深有感触,开发用例前必须先做好很多设置上的准备工作,总之使用Selenium编写和调试用例不是让人愉快的经历。随着前端自动化技术的发展,Cypress和Playwright脱颖而出,是目前UI自动化理想的测试框架。

  • Cypress的设计为对开发人员十分友好,它可以直接在浏览器中运行。Cypress的第一版于2015年发布,并于2018年开始真正流行,2020年,Cypress正式开源。
  • Playwright于2020年发布。它起初是一个JavaScript库,用于跨浏览器的端到端测试开发,现在已经支持Python、.NET和Java语言。

尽管这两个框架都很“young”,但它们提供了许多很棒的功能,使前端测试的实现变得十分有趣。
本文重点从大家比较关心的功能进行对比,为大家进行UI自动化的选型提供参考。

  1. 页面元素交互
  2. 导航
  3. 处理alerts弹框
  4. Iframes
  5. Waiting
  6. Requests
  7. 语言支持

页面元素交互

第一个例子介绍Cypress和Playwright与元素的交互及其断言上的使用方法。

测试用例:打开复选框页面,验证项目复选框未选择,然后选中该项目复选框,验证该项目已被正确选择。

Cypress:


  
  1. describe( 'Interacting with elements', () => {
  2. it( 'First example', () => {
  3. cy. visit( '/checkboxes');
  4. cy. get( '[type="checkbox"]')
  5. . should( ($elm) => {
  6. expect($elm). to. have. length( 2);
  7. })
  8. . eq( 0)
  9. . should( 'not.be.checked')
  10. . check()
  11. . should( 'be.checked');
  12. });
  13. it( 'Second example', () => {
  14. cy. visit( '/checkboxes');
  15. cy. get( '[type="checkbox"]'). then( ($elm) => {
  16. expect($elm). to. have. length( 2);
  17. expect($elm[ 0]). not. be. checked;
  18. cy. wrap($elm[ 0])
  19. . click()
  20. . then( ($elm) => {
  21. expect($elm). to. be. checked;
  22. });
  23. });
  24. });
  25. });

Playwright:


  
  1. const { test, expect } = require( '@playwright/test');
  2. test( 'Interacting with elements', async ({ page }) => {
  3. await page. goto( '/checkboxes');
  4. const checkboxes = page. locator( '[type="checkbox"]');
  5. const firstCheckbox = checkboxes. nth( 0);
  6. await expect( await checkboxes. count()). toEqual( 2);
  7. await expect(firstCheckbox). not. toBeChecked();
  8. await firstCheckbox. check();
  9. await expect(firstCheckbox). toBeChecked();
  10. });

通过代码演示,Cypress的代码相比Playwright不太容易理解,Playwright开发的测试用例更简洁容易理解。

导航

本案例验证它们如何处理当前页面中打开新页面。

测试用例:用户单击链接,打开链接被重定向到新选项卡中的页面。

Cypress:


  
  1. describe( 'Multiple windows', () => {
  2. it( 'Windows support - not supported', () => {
  3. cy. visit( '/windows');
  4. cy. get( '[href="/windows/new"]'). click();
  5. cy. get( 'h3'). should( 'have.text', 'New Window');
  6. });
  7. it( 'Windows support - removing "target" attribute', () => {
  8. cy. visit( '/windows');
  9. cy. get( '[href="/windows/new"]'). invoke( 'removeAttr', 'target'). click();
  10. cy. location( 'pathname'). should( 'eq', '/windows/new');
  11. cy. get( 'h3'). should( 'have.text', 'New Window');
  12. });
  13. });

Playwright:


  
  1. const { test, expect } = require( '@playwright/test');
  2. test( 'Windows support', async ({ page, context }) => {
  3. await page. goto( '/windows');
  4. let [newPage] = await Promise. all([
  5. context. waitForEvent( 'page'),
  6. page. locator( '[href="/windows/new"]'). click(),
  7. ]);
  8. await newPage. waitForLoadState();
  9. const newWindowElement = newPage. locator( 'h3');
  10. expect(newPage. url()). toContain( '/windows/new');
  11. await expect(newWindowElement). toHaveText( 'New Window');
  12. });

Cypress不支持在当前测试中打开新窗口,如果测试同学的业务测试场景需要这样操作,则很难满足用户需求。
对于Playwright来说,可以打开的窗口数量没有限制,用户可以完全控制他想要验证的内容,可以随时与任何上下文相关。

处理alerts弹框

alerts弹窗对大多数用户来说不是很友好,事实上alerts在当下大多数应用程序中越来越不常见。但是在自动化测试过程中,我们仍然会接触到很多触发alerts弹窗的测试场景。
下面这个案例就是比较两个框架处理alerts弹窗的方法。

Cypress:


  
  1. describe( 'Handling Alerts in browser', () => {
  2. beforeEach( () => {
  3. cy. visit( '/javascript_alerts');
  4. });
  5. it( 'Click "OK" on JS Alert', () => {
  6. cy. contains( 'Click for JS Alert'). click();
  7. cy. on( 'window:alert', (alert) => {
  8. expect(alert). to. eq( 'I am a JS Alert');
  9. });
  10. cy. on( 'window:confirm', () => true);
  11. cy. get( '#result'). should( 'have.text', 'You successfully clicked an alert');
  12. });
  13. it( 'Click "OK" on JS Confirm', () => {
  14. cy. contains( 'Click for JS Confirm'). click();
  15. cy. on( 'window:confirm', (str) => {
  16. expect(str). to. equal( `I am a JS Confirm`);
  17. });
  18. cy. on( 'window:confirm', () => true);
  19. cy. get( '#result'). should( 'have.text', 'You clicked: Ok');
  20. });
  21. it( 'Click "Cancel" on JS Confirm', () => {
  22. cy. contains( 'Click for JS Confirm'). click();
  23. cy. on( 'window:confirm', (str) => {
  24. expect(str). to. equal( `I am a JS Confirm`);
  25. });
  26. cy. on( 'window:confirm', () => false);
  27. cy. get( '#result'). should( 'have.text', 'You clicked: Cancel');
  28. });
  29. it( 'Fill JS Prompt', () => {
  30. cy. window(). then( ($win) => {
  31. cy. stub($win, 'prompt'). returns( 'This is a test text');
  32. cy. contains( 'Click for JS Prompt'). click();
  33. });
  34. cy. get( '#result'). should( 'have.text', 'You entered: This is a test text');
  35. });
  36. });

Playwright:


  
  1. const { test, expect } = require( '@playwright/test');
  2. test. describe( 'Handling Alerts in browser', () => {
  3. test. beforeEach( async ({ page }) => {
  4. await page. goto( '/javascript_alerts');
  5. });
  6. test( 'Click "OK" on JS Alert', async ({ page }) => {
  7. page. on( 'dialog', (dialog) => {
  8. expect(dialog. message()). toBe( 'I am a JS Alert');
  9. dialog. accept();
  10. });
  11. const button = page. locator( 'button >> text=Click for JS Alert');
  12. await button. click();
  13. const result = page. locator( '#result');
  14. await expect(result). toHaveText( 'You successfully clicked an alert');
  15. });
  16. test( 'Click "OK" on JS Confirm', async ({ page }) => {
  17. page. on( 'dialog', (dialog) => {
  18. expect(dialog. message()). toBe( 'I am a JS Confirm');
  19. dialog. accept();
  20. });
  21. const button = page. locator( 'button >> text=Click for JS Confirm');
  22. await button. click();
  23. const result = page. locator( '#result');
  24. await expect(result). toHaveText( 'You clicked: Ok');
  25. });
  26. test( 'Click "Cancel" on JS Confirm', async ({ page }) => {
  27. page. on( 'dialog', (dialog) => {
  28. expect(dialog. message()). toBe( 'I am a JS Confirm');
  29. dialog. dismiss();
  30. });
  31. const button = page. locator( 'button >> text=Click for JS Confirm');
  32. await button. click();
  33. const result = page. locator( '#result');
  34. await expect(result). toHaveText( 'You clicked: Cancel');
  35. });
  36. test( 'Fill JS Prompt', async ({ page }) => {
  37. page. on( 'dialog', (dialog) => {
  38. expect(dialog. message()). toBe( 'I am a JS prompt');
  39. dialog. accept( 'This is a test text');
  40. });
  41. const button = page. locator( 'button >> text=Click for JS Prompt');
  42. await button. click();
  43. const result = page. locator( '#result');
  44. await expect(result). toHaveText( 'You entered: This is a test text');
  45. });
  46. });

Playwright支持用相同的实现处理所有类型的alerts,用户可以轻松地验证alerts弹窗的内容。例如,选择你要测试的按钮。
而Cypress对本地弹窗的处理就显得不太友好。用例中有三种不同类型的弹窗,Cypress则需要使用不同的测试代码,这样的测试代码就显得比较冗余。

Iframes

在测试过程中往往需要使用iframe,例如使用电脑端淘宝购物选择支付方式,则会有安全窗口让你输入账户密码。iframe对于自动化测试人员来说一直是个比较难解决的问题。

测试用例:打开iframe并将文本输入其中。

Cypress:


  
  1. it( 'Iframe support', () => {
  2. cy. visit( '/iframe');
  3. const iframe = cy
  4. . get( '#mce_0_ifr')
  5. . its( '0.contentDocument.body')
  6. . should( 'be.visible')
  7. . then(cy. wrap);
  8. iframe. clear(). type( 'Some text'). should( 'have.text', 'Some text');
  9. });

Playwright:


  
  1. const { test, expect } = require( '@playwright/test');
  2. test( 'Iframe support', async ({ page }) => {
  3. await page. goto( '/iframe');
  4. const frame = page. frameLocator( '#mce_0_ifr');
  5. const frameBody = frame. locator( 'body');
  6. await frameBody. fill( '');
  7. await frameBody. fill( 'Some text');
  8. await expect(frameBody). toHaveText( 'Some text');
  9. });

在Playwright中,使用frameLocator() 方法很容易获得Iframe。要在Iframe中执行操作,我们使用类似的frame.locator ()方法,就可以在其中执行任何操作,例如写入文本、单击元素操作。
反观Cypress则并不容易处理iframe。如果要在Iframe中执行操作,我们需要安装npm cypress-iframe包,然后将插件添加到command.js。最后,在测试用例中,我们需要创建一个辅助函数,在其中传递要在iframe中执行操作的元素。

Waiting

一些比较老的测试框架始终存在等待缓慢加载元素的问题(例如selenium),有时候我们会在用例中添加过长超时时间以保证被测元素能加载出来来增加用例的稳定性,但是这样就大大降低了测试用例的执行效率。下面且看Cypress和Playwright是如何处理页面等待场景的。

Cypress:


  
  1. it( 'Waiting for lazy elements', () => {
  2. cy. visit( '/dynamic_loading/2');
  3. cy. contains( 'button', 'Start'). click();
  4. // Elements is loading longer then global timeout: 5_000
  5. cy. get( '#finish', { timeout: 10_000 }). should( 'be.visible'). should( 'have.text', 'Hello World!');
  6. });

Playwright:


  
  1. const { test, expect } = require( '@playwright/test');
  2. test( 'Waiting for lazy elements', async ({ page }) => {
  3. await page. goto( '/dynamic_loading/2');
  4. await page. getByText( 'Start'). click();
  5. const finish = page. locator( '#finish');
  6. // Elements is loading longer then global timeout: 5_000
  7. await expect(finish). toBeVisible({ timeout: 10_000 });
  8. await expect(finish). toHaveText( 'Hello World!');
  9. });

通过代码可以直观地看到,在Cypress和Playwright中,如果需要等待一个元素,你不需要做任何额外的工作,只需要在用例中对cy.get()方法添加timeout,然后使用.should('be.visible')检查页上的元素是否存在。如果元素在默认超时 (5_000ms) 仍不存在,则认为该元素不会出现。
在Playwright中,这种机制可以用于web-first断言。在这种情况下,我们确保元素可见,然后验证其可见性。
当然,相对于“过时”的UI测试框架,这两种解决方案都令人满意。因为我们不必持续等待10_000毫秒的固定超时时间,只要在超时时间内元素可见 测试用例都是通过的。

Requests

web测试不只是对页面元素的测试,有时候我们还要验证请求到的后端API接口返回的内容。在Cypress和Playwright框架中,可以直接在测试代码里拦截和发送请求。

测试用例:请求查询接口/api/users/2,对返回的内容进行断言。

Cypress:


  
  1. it( 'Request support - "then" example', () => {
  2. cy. request( 'GET', 'https://reqres.in/api/users/2'). then( ({ status, body }) => {
  3. expect(status). to. equal( 200);
  4. const { email, id } = body. data;
  5. expect( typeof email). to. be. equal( 'string');
  6. expect( typeof id). to. be. equal( 'number');
  7. expect(email). to. be. equal( 'janet.weaver@reqres.in');
  8. expect(id). to. be. equal( 2);
  9. });
  10. });
  11. it( 'Request support - "chain" example', () => {
  12. cy. request( 'GET', 'https://reqres.in/api/users/2'). as( 'response');
  13. cy. get( '@response'). its( 'status'). should( 'eq', 200);
  14. cy. get( '@response')
  15. . its( 'body.data')
  16. . then( ({ email, id }) => {
  17. expect( typeof email). to. be. equal( 'string');
  18. expect( typeof id). to. be. equal( 'number');
  19. expect(email). to. be. equal( 'janet.weaver@reqres.in');
  20. expect(id). to. be. equal( 2);
  21. });
  22. });

Playwright:


  
  1. const { test, expect } = require( '@playwright/test');
  2. test. use({
  3. baseURL: 'https://reqres.in',
  4. });
  5. test( 'Request support', async ({ request }) => {
  6. const response = await request. get( '/api/users/2');
  7. await expect(response). toBeOK();
  8. const body = await response. json();
  9. const { email, id } = body. data;
  10. expect( typeof email). toBe( 'string');
  11. expect( typeof id). toBe( 'number');
  12. expect(email). toEqual( 'janet.weaver@reqres.in');
  13. expect(id). toEqual( 2);
  14. });

Cypress和Playwright对发送HTTP请求对实现方式几乎一样。

在Cypress,我们使用.request()方法将URL和我们要执行的方法作为参数,然后在回调中得到响应,响应结果包括status,body、duration等。
在Playwright中,同样有request.get()方法用于发送HTTP请求,这里不做过多赘述。

语言支持

在UI自动化框架选型中,一个重要参考点就是 自动化测试框架支持哪些编程语言。因为在整个团队用特定语言编写的情况下,使用相同的语言编写测试用例可以更好的做测试工作,这这方面,无疑Playwright更具优势。

Playwright支持 Java、Python、.NET (C #)。

Cypress支持JavaScript。

那么,正在读文章的你支持哪种UI自动化框架呢,评论区告诉我。


转载:https://blog.csdn.net/csd11311/article/details/127703464
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场