You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Placing this here so it does not confuse other users ...
When using the "select" instruction -- select dropdown_name as option
you must use the value attribute (not the user visible text).
For example (from Wordpress):
<option value="wpseo_editor">SEO Editor</option>
<option value="wpseo_manager">SEO Manager</option>
<option value="bbp_participant">Participant</option>
<option value="bbp_moderator">Moderator</option>
<option value="administrator">Administrator</option>
<option value="">— No role for this site —</option>
</select>`
the correct statement to select the "SEO Manager" option is:
select role as wpseo_editor
The text was updated successfully, but these errors were encountered:
kensoh
changed the title
Select dropdown (drop-down) options
Select dropdown (drop-down) options - use the option value to denote what to select
Nov 6, 2018
@stevzie I am trying to select value from drop down which is having
name="MC19x279_select_attribute" and drop down value is "creationtime".
I am doing like this click //select[@name="MC19x279_select_attribute"] as option creationtime .
But getting error. Could you please help me to get the correct way.
Placing this here so it does not confuse other users ...
When using the "select" instruction -- select dropdown_name as option
you must use the value attribute (not the user visible text).
For example (from Wordpress):
the correct statement to select the "SEO Manager" option is:
The text was updated successfully, but these errors were encountered: