mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
43 lines
1.6 KiB
Java
43 lines
1.6 KiB
Java
#filter substitution
|
|
package @ANDROID_PACKAGE_NAME@.tests;
|
|
|
|
import @ANDROID_PACKAGE_NAME@.*;
|
|
import android.app.Activity;
|
|
|
|
public class testNewTab extends BaseTest {
|
|
public void testNewTab() {
|
|
setTestType("mochitest");
|
|
String url = getAbsoluteUrl("/robocop/robocop_blank_01.html");
|
|
String url2 = getAbsoluteUrl("/robocop/robocop_blank_02.html");
|
|
|
|
mActions.expectGeckoEvent("Gecko:Ready").blockForEvent();
|
|
|
|
// Add one tab
|
|
Element tabs = mDriver.findElement(getActivity(), "tabs");
|
|
Activity activity = getActivityFromClick(tabs);
|
|
Element urlbar = mDriver.findElement(activity, "awesomebar_text");
|
|
mActions.sendKeys(url);
|
|
mAsserter.is(urlbar.getText(), url, "Awesomebar url is fine");
|
|
hitEnterAndWait();
|
|
|
|
// See tab count
|
|
Element tabCount = mDriver.findElement(getActivity(), "tabs_count");
|
|
mAsserter.is(tabCount.getText(), "2", "Number of tabs has increased");
|
|
|
|
// Click tab list
|
|
activity = getActivityFromClick(tabs);
|
|
Element addTab = mDriver.findElement(activity, "add_tab");
|
|
|
|
// Add another tab. The new tab has its own awesome bar activity, so it
|
|
// is important to use the new activity to fetch the awesome bar text.
|
|
activity = getActivityFromClick(addTab);
|
|
mActions.sendKeys(url2);
|
|
urlbar = mDriver.findElement(activity, "awesomebar_text");
|
|
mAsserter.is(urlbar.getText(), url2, "URL is still fine");
|
|
|
|
hitEnterAndWait();
|
|
// Check tab count another time.
|
|
mAsserter.is(tabCount.getText(), "3", "Number of tabs has increased");
|
|
}
|
|
}
|