From 26805d7617504186f50f50f98d6b92f27bbda3eb Mon Sep 17 00:00:00 2001 From: Ross Wollman Date: Mon, 11 Jul 2022 11:04:34 -0700 Subject: [PATCH] docs: selectOption actionability checks (#15518) Based on anecdotal testing, and the code: https://github.com/microsoft/playwright/blob/dd0eb5fb1d7438d76034cb7b2034ed761eaa41eb/packages/playwright-core/src/server/dom.ts#L557 it looks like `selectOption` documentation failed to note it waits on `visiible` and `enabled`. --- docs/src/actionability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/actionability.md b/docs/src/actionability.md index cd240ddc90..07d8d7d118 100644 --- a/docs/src/actionability.md +++ b/docs/src/actionability.md @@ -35,7 +35,7 @@ Here is the complete list of actionability checks performed for each action: | innerHTML | Yes | - | - | - | - | - | | press | Yes | - | - | - | - | - | | setInputFiles | Yes | - | - | - | - | - | -| selectOption | Yes | - | - | - | - | - | +| selectOption | Yes | Yes | - | - | Yes | - | | textContent | Yes | - | - | - | - | - | | type | Yes | - | - | - | - | - |