how to select multiple rows of a table using selenium with java -
i working on selenium java , want select multiple rows (webelement
). using following code achieve this. new actions().click(webelement1).keydown(keys.control).click(webelement2) click(webelement3). keyup(keys.control). build(). perform();
code works fine in firefox not working in ie 9,10 or 11. in firefox select 3 elements in ie select last element. 3 elements available in visible when code getting executed. tried movetoelement
nothing working in ie. suggestions. in advance.
Comments
Post a Comment