Skip to content

Commit

Permalink
fix documents for #277
Browse files Browse the repository at this point in the history
  • Loading branch information
lefthandedgoat committed Jul 20, 2016
1 parent 015bb99 commit ce7c94e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/content/assertions.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,16 +121,16 @@ Assert that a radio or checkbox is not selected.
deselected "#yes"

(**
displayed
displayed
---------
Assert that an element is displayed on the screen.
Assert that an element is displayed on the screen. (Note: Will not walk up the dom. If a parent container is hidden this may give the wrong results, try adding :visible to selector)
*)
displayed "#modal"

(**
notDisplayed
------------
Assert that an element is not displayed on the screen.
Assert that an element is not displayed on the screen. (Note: Will not walk up the dom. If a parent container is hidden this may give the wrong results, try adding :visible to selector)
*)
notDisplayed "#modal"

Expand Down

0 comments on commit ce7c94e

Please sign in to comment.