1.0.2 • Published 3 years ago
custom-elements-cypress v1.0.2
custom-elements-cypress
Customized UI elements whick makes the cypress atomation script more easier
usage
import { _, Assert, Navigate } from "custom-elements-cypress"
available widgets
button
textbox
image
icon
radiobutton
checkbox
tab
label
link
dropdown
table
mat_button
mat_textbox
mat_dropdown
mat_table
How to use widgets in script
Const VEHICLE = _.label("label[name='vehicle']")
VEHICLE.isEqualTo('Bike')
Const SEARCH_BOX = _.textbox("input[name='q']")
SEARCH_BOX.clearAndType("Test")
Const COUNTRY = _.dropdown("//select[@id='country']")
COUNTRY.selectByText('India')
or
COUNTRY.selectByContainsText('Ind')
//for mat css
Const COUNTRY = _.mat_dropdown("//select[@id='country']")
COUNTRY.selectByContainsText('Ind')