Bug 1142699 - ToolbarComponent: Wait up to 60 seconds for the reader mode button to appear. r=mcomella

This commit is contained in:
Sebastian Kaspari 2015-03-14 03:31:00 -04:00
Родитель 9b756b2add
Коммит 8e0b04f70c
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -33,9 +33,10 @@ public class ToolbarComponent extends BaseComponent {
private static final String URL_HTTP_PREFIX = "http://";
// We are waiting up to 30 seconds instead of the default waiting time
// We are waiting up to 60 seconds instead of the default waiting time
// because reader mode parsing can take quite some time on slower devices
private static final int READER_MODE_WAIT_MS = 30000;
// See Bug 1142699
private static final int READER_MODE_WAIT_MS = 60000;
public ToolbarComponent(final UITestContext testContext) {
super(testContext);