Exemplo n.º 1
0
 public void WaitForNewActivityCard(int timeout = 5)
 {
     GetWebDriverWait(timeout).Until(CustomConditions.ActivityCardIsNew());
 }
Exemplo n.º 2
0
 public void WaitForNewActivityCardWithTypeReactivate(int timeout = 5)
 {
     GetWebDriverWait(timeout).Until(CustomConditions.ActivityCardWithReactivateActionIsNew());
 }
Exemplo n.º 3
0
 public void WaitForElementNonZero(By selector, int timeout = 5)
 {
     GetWebDriverWait(timeout).Until(CustomConditions.ElementIsNonZero(selector));
 }