File tree Expand file tree Collapse file tree 4 files changed +65
-0
lines changed
website_and_docs/content/documentation/webdriver/troubleshooting/errors Expand file tree Collapse file tree 4 files changed +65
-0
lines changed Original file line number Diff line number Diff line change @@ -179,3 +179,19 @@ This exception occurs when Selenium tries to interact with an element that is no
1791792 . Ensure locators uniquely identify the intended element to avoid incorrect matches.
1801803 . Check if the element is visible on the page before interacting with it. Use scrolling to bring the element into view, if required.
1811814 . Use explicit waits to ensure the element is interactable before performing actions.
182+
183+ ## ElementNotVisibleException
184+
185+ This exception is thrown when the element you are trying to interact with _ is_ present in the DOM, but is not visible.
186+
187+ ### Likely Cause
188+
189+ This can occur in several situations:
190+ * Another element is blocking your intended element
191+ * The element is disabled/invisible to the user
192+
193+ ### Possible Solutions
194+
195+ This issue cannot always be resolved on the user's end, however when it can it is usually solved by the following:
196+ using an explicit wait, or interacting with the page in such a way to make the element visible
197+ (scrolling, clicking a button, etc.)
Original file line number Diff line number Diff line change @@ -175,3 +175,20 @@ This exception occurs when Selenium tries to interact with an element that is no
1751752 . Ensure locators uniquely identify the intended element to avoid incorrect matches.
1761763 . Check if the element is visible on the page before interacting with it. Use scrolling to bring the element into view, if required.
1771774 . Use explicit waits to ensure the element is interactable before performing actions.
178+
179+ ## ElementNotVisibleException
180+
181+ This exception is thrown when the element you are trying to interact with _ is_ present in the DOM, but is not visible.
182+
183+ ### Likely Cause
184+
185+ This can occur in several situations:
186+ * Another element is blocking your intended element
187+ * The element is disabled/invisible to the user
188+
189+ ### Possible Solutions
190+
191+ This issue cannot always be resolved on the user's end, however when it can it is usually solved by the following:
192+ using an explicit wait, or interacting with the page in such a way to make the element visible
193+ (scrolling, clicking a button, etc.)
194+
Original file line number Diff line number Diff line change @@ -175,3 +175,19 @@ This exception occurs when Selenium tries to interact with an element that is no
1751752 . Ensure locators uniquely identify the intended element to avoid incorrect matches.
1761763 . Check if the element is visible on the page before interacting with it. Use scrolling to bring the element into view, if required.
1771774 . Use explicit waits to ensure the element is interactable before performing actions.
178+
179+ ## ElementNotVisibleException
180+
181+ This exception is thrown when the element you are trying to interact with _ is_ present in the DOM, but is not visible.
182+
183+ ### Likely Cause
184+
185+ This can occur in several situations:
186+ * Another element is blocking your intended element
187+ * The element is disabled/invisible to the user
188+
189+ ### Possible Solutions
190+
191+ This issue cannot always be resolved on the user's end, however when it can it is usually solved by the following:
192+ using an explicit wait, or interacting with the page in such a way to make the element visible
193+ (scrolling, clicking a button, etc.)
Original file line number Diff line number Diff line change @@ -178,3 +178,19 @@ Actions class with `Actions.moveToElement(element)`.
1781782 . 确保定位器唯一标识目标元素,以避免错误匹配。
1791793 . 在与元素交互之前,检查其是否在页面上可见。如果需要,将元素滚动到视图中。
1801804 . 使用显式等待以确保元素在执行操作前可交互。
181+
182+ ## ElementNotVisibleException
183+
184+ This exception is thrown when the element you are trying to interact with _ is_ present in the DOM, but is not visible.
185+
186+ ### Likely Cause
187+
188+ This can occur in several situations:
189+ * Another element is blocking your intended element
190+ * The element is disabled/invisible to the user
191+
192+ ### Possible Solutions
193+
194+ This issue cannot always be resolved on the user's end, however when it can it is usually solved by the following:
195+ using an explicit wait, or interacting with the page in such a way to make the element visible
196+ (scrolling, clicking a button, etc.)
You can’t perform that action at this time.
0 commit comments