mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
28 lines
947 B
Java
28 lines
947 B
Java
package org.mozilla.gecko.tests;
|
|
|
|
|
|
public class testBookmarkKeyword extends AboutHomeTest {
|
|
public void testBookmarkKeyword() {
|
|
blockForGeckoReady();
|
|
|
|
final String url = getAbsoluteUrl(StringHelper.ROBOCOP_BLANK_PAGE_01_URL);
|
|
final String keyword = "testkeyword";
|
|
|
|
// Add a bookmark, and update it to have a keyword.
|
|
mDatabaseHelper.addOrUpdateMobileBookmark(StringHelper.ROBOCOP_BLANK_PAGE_01_TITLE, url);
|
|
mDatabaseHelper.updateBookmark(url, StringHelper.ROBOCOP_BLANK_PAGE_01_TITLE, keyword);
|
|
|
|
// Enter the keyword in the urlbar.
|
|
inputAndLoadUrl(keyword);
|
|
|
|
// Wait for the page to load.
|
|
waitForText(StringHelper.ROBOCOP_BLANK_PAGE_01_TITLE);
|
|
|
|
// Make sure the title of the page appeared.
|
|
verifyPageTitle(StringHelper.ROBOCOP_BLANK_PAGE_01_TITLE);
|
|
|
|
// Delete the bookmark to clean up.
|
|
mDatabaseHelper.deleteBookmark(url);
|
|
}
|
|
}
|