
|
If you were logged in you would be able to see more operations.
|
|
|
|
Original Estimate:
|
2h
|
Remaining Estimate:
|
2h
|
Time Spent:
|
Unknown
|
|
|
Tests written for RC 0.9.0 couldn't be compiled with RC 0.9.2 due to incompatible changes in the Wait class.
Published API of the previous and new version:
public abstract class Wait {
public Wait(String message);
public Wait(String message, long timeoutInMilliseconds);
public Wait(String message, long timeoutInMilliseconds, long intervalInMilliseconds);
}
Actual code in the new version:
public abstract class Wait {
public void wait(String message);
public void wait(String message, long timeoutInMilliseconds);
public void wait(String message, long timeoutInMilliseconds, long intervalInMilliseconds);
}
|
|
Description
|
Tests written for RC 0.9.0 couldn't be compiled with RC 0.9.2 due to incompatible changes in the Wait class.
Published API of the previous and new version:
public abstract class Wait {
public Wait(String message);
public Wait(String message, long timeoutInMilliseconds);
public Wait(String message, long timeoutInMilliseconds, long intervalInMilliseconds);
}
Actual code in the new version:
public abstract class Wait {
public void wait(String message);
public void wait(String message, long timeoutInMilliseconds);
public void wait(String message, long timeoutInMilliseconds, long intervalInMilliseconds);
} |
Show » |
|
new Wait("Close button not found") {
boolean until() {
return selenium.isElementPresent("button_Close");
}
};