Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.21 KB

File metadata and controls

52 lines (33 loc) · 1.21 KB
description
Learn how to use the I.see command to assert texts is seen in your UIlicious test.

I see Command

I.see

Assert that an text or element is visible

Ignores casing and white-spaces. This behavior is not configurable at the moment.

Usage

I.see(target)

Parameters

Parameter Type Remarks
target string Text or element to find

Example(s)

I.see("Welcome back, Bruce");

Asserts that the text "Welcome back, Bruce" is seen on the page.


I.dontSee

Assert that an text or element is NOT visible

Ignores casing and white-spaces. This behavior is not configurable at the moment.

Usage

I.dontSee(target)

Parameters

Parameter Type Remarks
target string Text or element to find