最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Cypress how can I check if the background changes in a div - Stack Overflow

programmeradmin2浏览0评论

I have a div in which I load dynamic image depending if the user clicks on a button.

<div style="background-image: url('myimage.png')"></div>

so far this is my test:

cy.get('label').first().click();

cy.get('.bg-cover').should('have.css', 'background-image');

But how can I check if the background src changes.

I have a div in which I load dynamic image depending if the user clicks on a button.

<div style="background-image: url('myimage.png')"></div>

so far this is my test:

cy.get('label').first().click();

cy.get('.bg-cover').should('have.css', 'background-image');

But how can I check if the background src changes.

Share Improve this question asked Sep 23, 2020 at 8:30 kimfskimfs 832 silver badges9 bronze badges 3
  • Check this stackoverflow./questions/2157963/… – Ali Azimi Commented Sep 23, 2020 at 8:37
  • 2 Have you tried .should('have.css', 'background-image', "url('myimage.png')");? – dork Commented Sep 23, 2020 at 8:40
  • @dork the image url can be dynamic, that is why I need to check wether the image exists and the url changes on click – kimfs Commented Sep 23, 2020 at 8:54
Add a ment  | 

1 Answer 1

Reset to default 12

I'm not sure you already resolved this, but I leave my solution for other

cy.get('.bg-cover')
  .should('have.css', 'background-image')
  .and('include', 'myimage.png')
发布评论

评论列表(0)

  1. 暂无评论