2011-09-22 149 views

回答

6

嘗試其中之一:

element.WaitUntil(Find.ByClass("your_class_name")); 
element.WaitUntil(d => d.ClassName == "your_class_name"); 

請記住,該元素與class="your_class_name other_class_name"可能(我不是100%肯定)不會被發現。

+0

第二種形式基本上是我需要的,謝謝!不知道我是如何錯過自己嘗試的,因爲我正在以某種方式嘗試lambda。 – aknuds1