it ('check link', () => {
cy.visit(/)
var link1_value
var link2_value
var datasheet_value
cy.get('[class="classname"]').then(($link1) => {
if ($link1.find('[data-type="link1"]').length>0){
cy.get('[data-type="link1"]').invoke('text').as('link1')
cy.get('@link1').then((link1) => {
link1_value = 'Link1:' + link1
})
}
else {
link1_value= '0'
}
}) //there's another one like this for link2
cy.writeFile('txt.json', { link1: link1_value ,link2: link2_value })
})
The code above does not work because link1_value does not have any data. How should I add the value so that it will show in the json file?
To start with, wrap the
cy.writeFile()
in a.then()
.You can also try with the cypress-if package
Without the variables (passing results down the chain)
With the 2nd link