//Regular lecture 39: 19-Nov-2022
//*Topic*//cypress - lecture 13//
//dropdown,checkbox,radio button// using each method
describe("dropdown,checkboxes,radiobutton", function(){
it("test5-check & uncheck all checkbox", function(){
cy.visit("http://www.webdriveruniversity.com/Dropdown-Checkboxes-RadioButtons/index.html")
cy.get('[id="checkboxes"]').children().filter('label').find('input').check().should('be.checked')
.uncheck()
})
it("test6-check checkbox using each() method", function(){
cy.visit("http://www.webdriveruniversity.com/Dropdown-Checkboxes-RadioButtons/index.html")
cy.get('[id="checkboxes"]').children().filter('label').find('input').each(function(el){
cy.wrap(el).check().should('be.checked')
})
})
it("test7-select radioButtons oneByone using each() method", function(){
cy.visit("http://www.webdriveruniversity.com/Dropdown-Checkboxes-RadioButtons/index.html")
let a = cy.get('[id="radio-buttons"]').find('input').each(function(element){
cy.wrap(element).check()
})
})
})
टिप्पण्या
टिप्पणी पोस्ट करा
आपल्या प्रतिक्रियेबद्दल धन्यवाद ! आम्ही लवकरात लवकर प्रतिक्रियेला उत्तर देण्याचा प्रयत्न करू