Handling ListBoxes in selenium
ListBox is an element where user can select/deselect one or more items from it. To identify the ListBox on webpage, look for select tag and attribute should be ‘multiple’ to select multiple items and there will be option tag which contains each item in it.[as shown below] How can we identify a ListBox on webpage:…