Wiki source code of Selenium Command Examples
Version 13.1 by Kieran Kelleher on 2007/11/29 09:35
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
6.1 | 1 | Click a link having css class 'sel//create//team' |
2 | |||
![]() |
12.1 | 3 | | clickAndWait | ~/~/a@class='sel//create//team' | | |
![]() |
6.1 | 4 | Add the first element of a list browser (aka. 'select' element) to the current selections. The list browser is identified by css class 'sel//browser//list' |
![]() |
12.1 | 5 | | addSelection | ~/~/select@class='sel//browser//list' | value=0 | |
![]() |
6.1 | 6 | Add the third element of a list browser (aka. 'select' element) to the current selections. The list browser is identified by css class 'sel//browser//list' |
![]() |
12.1 | 7 | | addSelection | ~/~/select@class='sel//browser//list' | value=2 | |
![]() |
6.1 | 8 | Add the item named "John Murphy" of a list browser (aka. 'select' element) to the current selections. The list browser is identified by css class 'sel//browser//list' |
![]() |
12.1 | 9 | | addSelection | ~/~/select@class='sel//browser//list' | label=John Murphy |