Skip to main content

Posts

Showing posts with the label random Options in cypress

How to select a random option from dropdown in cypress ?

  Suppose that you have the following values in dropdown.   Step (1) Define all these values which are in your dropdown in an array for example. πŸ‘‡   var   Reference  = [ "LinkedIn" ,  "Facebook" ,  "Twitter" ,  "Other" ,  "Instagram" ,  "Email" ,  "Friends" ]; Step (2) Then define a random function for exampleπŸ‘‡ var   randreferences  =  Reference [ Math . floor ( Math . random () *  Reference . length )]; Step (3) Call this random function in Select() method. for example πŸ‘‡ cy . get ( '#aboutUs' ). select ( randreferences ) Important Note:This code should be in same test case where you are trying to do this one Enjoy✌ Full Code ==>πŸ‘‡πŸ‘‡πŸ‘‡ var   Reference  = [ "LinkedIn" ,  "Facebook" ,  "Twitter" ,  "Other" ,  "Instagram" ,  "Email" ,  "Friends" ]; var   randreferences  =  Reference [ Math . floor ( Math . random () *  Reference . lengt