You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
awaitexpect($container).toHaveTextContaining('count is 0')
60
+
awaitexpect($container).toHaveText(
61
+
expect.stringContaining('count is 0')
62
+
)
49
63
/**
50
64
* fails due to "element click intercepted: Element <button aria-label="counter">...</button> is not clickable at point (68, 402). Other element would receive the click: <div style="...">...</div>" error
51
65
*/
52
66
await$container.$('button').click()
53
-
awaitexpect($container).toHaveTextContaining('count is 1')
67
+
awaitexpect($container).toHaveText(
68
+
expect.stringContaining('count is 1')
69
+
)
54
70
})
55
71
56
72
it('fails because the element is outside the viewport',async()=>{
0 commit comments