selenium работа с выпадающим списком

Sep 01, 2011 15:32

странно, но обычная команда click(локатор) у меня не сработала...
поэтому заюзала click_at - развернули список
select(локатор_списка,локатор_option)
фишка в том, что локатор выбираемой опции должен быть относительно самого списка(select)


  • label=labelPattern:matches options based on their labels, i.e. the visible text. (Thisis the default.)

    • label=regexp:^[Oo]ther


  • value=valuePattern:matches options based on their values.

    • value=other


  • id=id:matches options based on their ids.

    • id=option1


  • index=index:matches an option based on its index (offset from zero).

    • index=2

# $sel->click_at($adv_detail_select_fileformat[0]);
$sel->select($adv_detail_select_fileformat[0],"value=".$key);

первую строку можно раскомментить для визуализации...

работа, selenium

Previous post Next post
Up