//Regular lecture 28: 7-Nov-2022
//*Topic: cypress*// lecture 2 - starting to write testcases//
/// <reference types = "Cypress"/>
describe("site visits & search",function(){
//example 1
it("google search",function(){
cy.visit("https://www.google.co.in/")
cy.get('[class="gLFyf gsfi"]').type("tuljapur {enter}")
})
//example 2
it("amazon search", function(){
cy.visit("https://www.amazon.in/")
cy.get('[id="twotabsearchtextbox"]').type("samsung {enter}")
})
})
टिप्पण्या
टिप्पणी पोस्ट करा
आपल्या प्रतिक्रियेबद्दल धन्यवाद ! आम्ही लवकरात लवकर प्रतिक्रियेला उत्तर देण्याचा प्रयत्न करू