From b8339d0ede006eb2e0c928afacdde6b77fb6df04 Mon Sep 17 00:00:00 2001 From: Neil Williams Date: Sun, 29 Mar 2020 19:17:08 -0400 Subject: [PATCH] fixed typo in basic within section readme --- docs/basics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics.md b/docs/basics.md index d3cb25dca..9e02721fe 100644 --- a/docs/basics.md +++ b/docs/basics.md @@ -622,7 +622,7 @@ within('.js-signup-form', () => { I.see('There were problems creating your account.'); ``` -> ⚠ `within` can cause problems when used incorrectly. If you see a weired behavior of a test try to refactor it to not use `within`. It is recommended to keep within for simplest cases when possible. +> ⚠ `within` can cause problems when used incorrectly. If you see a weird behavior of a test try to refactor it to not use `within`. It is recommended to keep within for simplest cases when possible. `within` can also work with IFrames. A special `frame` locator is required to locate the iframe and get into its context.