Using alias from before() in a it() test
In this example on the website, they say there is a simple way to use data you create in before() or beforeEach() in a testcase it(). But when I tried it it said my this.variable was undefined. After a little more searching I found that all aliases are cleared before each test, making the example on the website not possible.
Using cypress alias from before() in a it() test
I’m learning how to use cypress in a pretty informal way, so my apologies if this seems obvious.