mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
28 lines
1,003 B
Java
28 lines
1,003 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,
|
|
StringHelper.ROBOCOP_BLANK_PAGE_01_URL);
|
|
|
|
// Delete the bookmark to clean up.
|
|
mDatabaseHelper.deleteBookmark(url);
|
|
}
|
|
}
|