how to select value from a drop down using Selenium IDE

前端 未结 9 2573
灰色年华
灰色年华 2021-02-20 09:26

I am using Selenium IDE for the first and has no knowledge of automation scripting. So far i am able to manage using IDE but one issue is I am not able to select a value from dr

9条回答
  •  迷失自我
    2021-02-20 10:04

    General approach is firstly click on the element and then select value from the element.

    For Clicking : 1.Command : click 2.target : element locator like xpath/id/class of the element eg. xpath=xpath of the element

    For Selecting value: 1.Command : select 2.target : same element locator used for clicking 3.Value : Visible text you want to select / Index (You will get it by inspecting that element)

提交回复
热议问题