Module

Cypress

Package
purescript-cypress
Repository
alexmouton/purescript-cypress

#Cy Source

data Cy :: Type

#Elements Source

newtype Elements

Constructors

#Document Source

newtype Document

Constructors

#Window Source

newtype Window

Constructors

#Clock Source

newtype Clock

Constructors

#Query Source

data Query a

Constructors

#Exec Source

type Exec = Foreign

#Location Source

#Cookie Source

#andFn Source

andFn :: forall a. EffectFn3 String Int (Query a) (Query a)

#asFn Source

asFn :: forall a. EffectFn2 String (Query a) (Query a)

#endFn Source

endFn :: forall a. EffectFn1 (Query a) Unit

#firstFn Source

firstFn :: forall a. EffectFn1 (Query a) (Query a)

#shouldFn Source

shouldFn :: forall a. EffectFn3 String Int (Query a) (Query a)

#withinFn Source

withinFn :: forall b a. EffectFn3 ((Query a) -> (Query b)) (Query a) Cy (Query b)

#wrapFn Source

wrapFn :: forall a. EffectFn2 a Cy (Query a)

#runCypress Source

runCypress :: forall a. CypressM a -> Cy -> Effect a

#askC1 Source

askC1 :: forall a b. (EffectFn1 b a) -> ReaderT b Effect a

#askC2 Source

askC2 :: forall b a s. (EffectFn2 s b a) -> s -> ReaderT b Effect a

#askC3 Source

askC3 :: forall b a t s. (EffectFn3 s t b a) -> s -> t -> ReaderT b Effect a

#naskC1 Source

naskC1 :: forall b a s. (EffectFn1 s a) -> s -> ReaderT b Effect a

#naskC2 Source

naskC2 :: forall b a t s. (EffectFn2 s t a) -> s -> t -> ReaderT b Effect a

#naskC3 Source

naskC3 :: forall b a u t s. (EffectFn3 s t u a) -> s -> t -> u -> ReaderT b Effect a

#and Source

and :: forall a. String -> Int -> Query a -> CypressM (Query a)

#as Source

as :: forall a. String -> (Query a) -> CypressM (Query a)

#end Source

end :: forall a. Query a -> CypressM Unit

#first Source

first :: forall a. (Query a) -> CypressM (Query a)

#should Source

should :: forall a. String -> Int -> Query a -> CypressM (Query a)

#viewport Source

#within Source

within :: forall b a. ((Query a) -> (Query b)) -> (Query a) -> CypressM (Query b)

#wrap Source

wrap :: forall a. a -> CypressM (Query a)
Modules
Cypress
Main