@@ -4058,7 +4058,7 @@ default ElementHandle querySelector(String selector) {
40584058 *
40594059 * <p> **Usage**
40604060 * <pre>{@code
4061- * // single selection matching the value
4061+ * // Single selection matching the value or label
40624062 * frame.selectOption("select#colors", "blue");
40634063 * // single selection matching both the value and the label
40644064 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4091,7 +4091,7 @@ default List<String> selectOption(String selector, String values) {
40914091 *
40924092 * <p> **Usage**
40934093 * <pre>{@code
4094- * // single selection matching the value
4094+ * // Single selection matching the value or label
40954095 * frame.selectOption("select#colors", "blue");
40964096 * // single selection matching both the value and the label
40974097 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4122,7 +4122,7 @@ default List<String> selectOption(String selector, String values) {
41224122 *
41234123 * <p> **Usage**
41244124 * <pre>{@code
4125- * // single selection matching the value
4125+ * // Single selection matching the value or label
41264126 * frame.selectOption("select#colors", "blue");
41274127 * // single selection matching both the value and the label
41284128 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4155,7 +4155,7 @@ default List<String> selectOption(String selector, ElementHandle values) {
41554155 *
41564156 * <p> **Usage**
41574157 * <pre>{@code
4158- * // single selection matching the value
4158+ * // Single selection matching the value or label
41594159 * frame.selectOption("select#colors", "blue");
41604160 * // single selection matching both the value and the label
41614161 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4186,7 +4186,7 @@ default List<String> selectOption(String selector, ElementHandle values) {
41864186 *
41874187 * <p> **Usage**
41884188 * <pre>{@code
4189- * // single selection matching the value
4189+ * // Single selection matching the value or label
41904190 * frame.selectOption("select#colors", "blue");
41914191 * // single selection matching both the value and the label
41924192 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4219,7 +4219,7 @@ default List<String> selectOption(String selector, String[] values) {
42194219 *
42204220 * <p> **Usage**
42214221 * <pre>{@code
4222- * // single selection matching the value
4222+ * // Single selection matching the value or label
42234223 * frame.selectOption("select#colors", "blue");
42244224 * // single selection matching both the value and the label
42254225 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4250,7 +4250,7 @@ default List<String> selectOption(String selector, String[] values) {
42504250 *
42514251 * <p> **Usage**
42524252 * <pre>{@code
4253- * // single selection matching the value
4253+ * // Single selection matching the value or label
42544254 * frame.selectOption("select#colors", "blue");
42554255 * // single selection matching both the value and the label
42564256 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4283,7 +4283,7 @@ default List<String> selectOption(String selector, SelectOption values) {
42834283 *
42844284 * <p> **Usage**
42854285 * <pre>{@code
4286- * // single selection matching the value
4286+ * // Single selection matching the value or label
42874287 * frame.selectOption("select#colors", "blue");
42884288 * // single selection matching both the value and the label
42894289 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4314,7 +4314,7 @@ default List<String> selectOption(String selector, SelectOption values) {
43144314 *
43154315 * <p> **Usage**
43164316 * <pre>{@code
4317- * // single selection matching the value
4317+ * // Single selection matching the value or label
43184318 * frame.selectOption("select#colors", "blue");
43194319 * // single selection matching both the value and the label
43204320 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4347,7 +4347,7 @@ default List<String> selectOption(String selector, ElementHandle[] values) {
43474347 *
43484348 * <p> **Usage**
43494349 * <pre>{@code
4350- * // single selection matching the value
4350+ * // Single selection matching the value or label
43514351 * frame.selectOption("select#colors", "blue");
43524352 * // single selection matching both the value and the label
43534353 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4378,7 +4378,7 @@ default List<String> selectOption(String selector, ElementHandle[] values) {
43784378 *
43794379 * <p> **Usage**
43804380 * <pre>{@code
4381- * // single selection matching the value
4381+ * // Single selection matching the value or label
43824382 * frame.selectOption("select#colors", "blue");
43834383 * // single selection matching both the value and the label
43844384 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
@@ -4411,7 +4411,7 @@ default List<String> selectOption(String selector, SelectOption[] values) {
44114411 *
44124412 * <p> **Usage**
44134413 * <pre>{@code
4414- * // single selection matching the value
4414+ * // Single selection matching the value or label
44154415 * frame.selectOption("select#colors", "blue");
44164416 * // single selection matching both the value and the label
44174417 * frame.selectOption("select#colors", new SelectOption().setLabel("Blue"));
0 commit comments