summaryrefslogtreecommitdiffstats
path: root/mobile/android/tests/browser/robocop/src/org/mozilla/gecko/Driver.java
blob: 4c8373c5bf4d201b2c87bd0ef263d8d05de99ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko;

import android.app.Activity;

public interface Driver {
    /**
     * Find the first Element using the given method.
     * 
     * @param activity The activity the element belongs to
     * @param id The resource id of the element
     * @return The first matching element on the current context, or null if not found.
     */
    Element findElement(Activity activity, int id);

    /**
     * Sets up scroll handling so that data is received from the extension.
     */
    void setupScrollHandling();

    int getPageHeight();
    int getScrollHeight();
    int getHeight();
    int getGeckoTop();
    int getGeckoLeft();
    int getGeckoWidth();
    int getGeckoHeight();

    void startFrameRecording();
    int stopFrameRecording();

    void startCheckerboardRecording();
    float stopCheckerboardRecording();

    /**
     * Get a copy of the painted content region.
     * @return A 2-D array of pixels (indexed by y, then x). The pixels
     * are in ARGB-8888 format.
     */
    PaintedSurface getPaintedSurface();
}