Skip to content
#

bdd-specs

Here are 16 public repositories matching this topic...

dmitrybublik
dmitrybublik commented Dec 14, 2016

TestStack.White.UIItems.ListViewRow cannot be selected normally. The method Select() doesn't work. For selection emultaion we use trick:

listViewRow.Focus();
listViewRow.Cells[0].Click();

But this trick works unstable. It is better add big delay between Focus() and Click():

listViewRow.Focus();
Task.Delay(1000).Wait();
listViewRow.Cells[0].Click();

Improve this page

Add a description, image, and links to the bdd-specs topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the bdd-specs topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.