//Regular lecture 38: 18-Nov-2022
//*Topic*//cypress - lecture 12//
//dropdown,checkbox,radio button//
///<reference types = "Cypress"/>
describe("dropdown,checkbox,radiobutton", function(){
it("test1-drowndown", function(){
cy.visit("http://www.webdriveruniversity.com/Dropdown-Checkboxes-RadioButtons/index.html")
cy.get('[id="dropdowm-menu-1"]').select('JAVA')
})
it("test2-checkboxes-check option1", function(){
cy.visit("http://www.webdriveruniversity.com/Dropdown-Checkboxes-RadioButtons/index.html")
cy.get('[value="option-1"]').check().should('be.checked')
})
it("test3-checkboxes-uncheck option3", function(){
cy.visit("http://www.webdriveruniversity.com/Dropdown-Checkboxes-RadioButtons/index.html")
cy.get('[value="option-3"]').uncheck().should('not.be.checked')
})
it("test4-radioButtons - check Blue", function(){
cy.visit("http://www.webdriveruniversity.com/Dropdown-Checkboxes-RadioButtons/index.html")
cy.get('[value="blue"]').check().should('be.checked')
})
})
टिप्पण्या
टिप्पणी पोस्ट करा
आपल्या प्रतिक्रियेबद्दल धन्यवाद ! आम्ही लवकरात लवकर प्रतिक्रियेला उत्तर देण्याचा प्रयत्न करू