热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

EspressoViewActions.java

2019独角兽企业重金招聘Python工程师标准摘抄地址:https:android.googlesource.complatformframeworkstes

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

摘抄地址:https://android.googlesource.com/platform/frameworks/testing/+/android-support-test/espresso/core/src/main/java/android/support/test/espresso/action/ViewActions.java

因为需要链接vpn才能看到。为了方便。直接down下来了

具体的文件地址:

android / platform / frameworks / testing / android-support-test / . / espresso / core / src / main / java / android /support / test / espresso / action / ViewActions.java

 

/** Copyright (C) 2014 The Android Open Source Project** Licensed under the Apache License, Version 2.0 (the "License");* you may not use this file except in compliance with the License.* You may obtain a copy of the License at**   http://www.apache.org/licenses/LICENSE-2.0** Unless required by applicable law or agreed to in writing, software* distributed under the License is distributed on an "AS IS" BASIS,* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.* See the License for the specific language governing permissions and* limitations under the License.*/
package android.support.test.espresso.action;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
import static org.hamcrest.Matchers.any;
import static org.hamcrest.Matchers.is;
import android.support.test.espresso.UiController;
import android.support.test.espresso.ViewAction;
import android.support.test.espresso.ViewAssertion;
import android.net.Uri;
import android.util.Log;
import android.util.Pair;
import android.view.KeyEvent;
import android.view.View;
import org.hamcrest.Matcher;
import java.util.Set;
import java.util.concurrent.CopyOnWriteArraySet;
import javax.annotation.Nonnull;
/*** A collection of common {@link ViewActions}.*/
public final class ViewActions {private ViewActions() {}/*** The distance of a swipe's start position from the view's edge, in terms of the view's length.* We do not start the swipe exactly on the view's edge, but somewhat more inward, since swiping* from the exact edge may behave in an unexpected way (e.g. may open a navigation drawer).*/private static final float EDGE_FUZZ_FACTOR = 0.083f;/*** A set of {@code ViewAssertion}s to be executed before the ViewActions in this class.*/private static Set> globalAssertions =new CopyOnWriteArraySet>();/*** Adds a {@code ViewAssertion} to be run every time a {@code ViewAction} in this class is* performed. The assertion will be run prior to performing the action.** @param name a name of the assertion to be added* @param viewAssertion a {@code ViewAssertion} to be added* @throws IllegalArgumentException if the name/viewAssertion pair is already contained in the*         global assertions.*/public static void addGlobalAssertion(String name, ViewAssertion viewAssertion) {checkNotNull(name);checkNotNull(viewAssertion);Pair vaPair = new Pair(name, viewAssertion);checkArgument(!globalAssertions.contains(vaPair),"ViewAssertion with name %s is already in the global assertions!", name);globalAssertions.add(vaPair);}/*** Removes the given assertion from the set of assertions to be run before actions are performed.** @param viewAssertion the assertion to remove* @throws IllegalArgumentException if the name/viewAssertion pair is not already contained in the*         global assertions.*/public static void removeGlobalAssertion(ViewAssertion viewAssertion) {boolean removed = false;for (Pair vaPair : globalAssertions) {if (viewAssertion != null && viewAssertion.equals(vaPair.second)) {removed = removed || globalAssertions.remove(vaPair);}}checkArgument(removed, "ViewAssertion was not in global assertions!");}public static void clearGlobalAssertions() {globalAssertions.clear();}/*** Performs all assertions before the {@code ViewAction}s in this class and then performs the* given {@code ViewAction}** @param viewAction the {@code ViewAction} to perform after the assertions*/public static ViewAction actionWithAssertions(final ViewAction viewAction) {if (globalAssertions.isEmpty()) {return viewAction;}return new ViewAction() {@Overridepublic String getDescription() {StringBuilder msg = new StringBuilder("Running view assertions[");for (Pair vaPair : globalAssertions) {msg.append(vaPair.first);msg.append(", ");}msg.append("] and then running: ");msg.append(viewAction.getDescription());return msg.toString();}@Overridepublic Matcher getConstraints() {return viewAction.getConstraints();}@Overridepublic void perform(UiController uic, View view) {for (Pair vaPair : globalAssertions) {Log.i("ViewAssertion", "Asserting " + vaPair.first);vaPair.second.check(view, null);}viewAction.perform(uic, view);}};}/*** Returns an action that clears text on the view.

* View constraints:* 

  • must be displayed on screen* 
      */public static ViewAction clearText() {return actionWithAssertions(new ReplaceTextAction(""));}/*** Returns an action that clicks the view.

      * View constraints:* 
      • must be displayed on screen* 
          */public static ViewAction click() {return actionWithAssertions(new GeneralClickAction(Tap.SINGLE, GeneralLocation.VISIBLE_CENTER, Press.FINGER));}/*** Returns an action that performs a single click on the view.** If the click takes longer than the 'long press' duration (which is possible) the provided* rollback action is invoked on the view and a click is attempted again.** This is only necessary if the view being clicked on has some different behaviour for long press* versus a normal tap.** For example - if a long press on a particular view element opens a popup menu -* ViewActions.pressBack() may be an acceptable rollback action.** 
          * View constraints:* 
          • must be displayed on screen
          • any constraints of the rollbackAction
            • */public static ViewAction click(ViewAction rollbackAction) {checkNotNull(rollbackAction);return actionWithAssertions(new GeneralClickAction(Tap.SINGLE, GeneralLocation.CENTER, Press.FINGER, rollbackAction));}/*** Returns an action that performs a swipe right-to-left across the vertical center of the* view. The swipe doesn't start at the very edge of the view, but is a bit offset.

              * View constraints:* 
              • must be displayed on screen* 
                  */public static ViewAction swipeLeft() {return actionWithAssertions(new GeneralSwipeAction(Swipe.FAST,GeneralLocation.translate(GeneralLocation.CENTER_RIGHT, -EDGE_FUZZ_FACTOR, 0),GeneralLocation.CENTER_LEFT, Press.FINGER));}/*** Returns an action that performs a swipe left-to-right across the vertical center of the* view. The swipe doesn't start at the very edge of the view, but is a bit offset.

                  * View constraints:* 
                  • must be displayed on screen* 
                      */public static ViewAction swipeRight() {return actionWithAssertions(new GeneralSwipeAction(Swipe.FAST,GeneralLocation.translate(GeneralLocation.CENTER_LEFT, EDGE_FUZZ_FACTOR, 0),GeneralLocation.CENTER_RIGHT, Press.FINGER));}/*** Returns an action that performs a swipe top-to-bottom across the horizontal center of the view.* The swipe doesn't start at the very edge of the view, but has a bit of offset.

                      * View constraints:* 
                      • must be displayed on screen* 
                          */public static ViewAction swipeDown() {return actionWithAssertions(new GeneralSwipeAction(Swipe.FAST,GeneralLocation.translate(GeneralLocation.TOP_CENTER, 0, EDGE_FUZZ_FACTOR),GeneralLocation.BOTTOM_CENTER, Press.FINGER));}/*** Returns an action that performs a swipe bottom-to-top across the horizontal center of the view.* The swipe doesn't start at the very edge of the view, but has a bit of offset.

                          * View constraints:* 
                          • must be displayed on screen* 
                              */public static ViewAction swipeUp() {return actionWithAssertions(new GeneralSwipeAction(Swipe.FAST,GeneralLocation.translate(GeneralLocation.BOTTOM_CENTER, 0, -EDGE_FUZZ_FACTOR),GeneralLocation.TOP_CENTER, Press.FINGER));}/*** Returns an action that closes soft keyboard. If the keyboard is already closed, it is a no-op.*/public static ViewAction closeSoftKeyboard() {return actionWithAssertions(new CloseKeyboardAction());}/*** Returns an action that presses the current action button (next, done, search, etc) on the IME* (Input Method Editor). The selected view will have its onEditorAction method called.*/public static ViewAction pressImeActionButton() {return actionWithAssertions(new EditorAction());}/*** Returns an action that clicks the back button.*/public static ViewAction pressBack() {return pressKey(KeyEvent.KEYCODE_BACK);}/*** Returns an action that presses the hardware menu key.*/public static ViewAction pressMenuKey() {return pressKey(KeyEvent.KEYCODE_MENU);}/*** Returns an action that presses the key specified by the keyCode (eg. Keyevent.KEYCODE_BACK).*/public static ViewAction pressKey(int keyCode) {return actionWithAssertions(new KeyEventAction(new EspressoKey.Builder().withKeyCode(keyCode).build()));}/*** Returns an action that presses the specified key with the specified modifiers.*/public static ViewAction pressKey(EspressoKey key) {return actionWithAssertions(new KeyEventAction(key));}/*** Returns an action that double clicks the view.

                              * View preconditions:* 
                              • must be displayed on screen* 
                                  */public static ViewAction doubleClick() {return actionWithAssertions(new GeneralClickAction(Tap.DOUBLE, GeneralLocation.CENTER, Press.FINGER));}/*** Returns an action that long clicks the view.
                                  ** 
                                  * View preconditions:* 
                                  • must be displayed on screen* 
                                      */public static ViewAction longClick() {return actionWithAssertions(new GeneralClickAction(Tap.LONG, GeneralLocation.CENTER, Press.FINGER));}/*** Returns an action that scrolls to the view.

                                      * View preconditions:* 
                                      • must be a descendant of ScrollView* 
                                      • must have visibility set to View.VISIBLE* 
                                          */public static ViewAction scrollTo() {return actionWithAssertions(new ScrollToAction());}/*** Returns an action that types the provided string into the view.* Appending a \n to the end of the string translates to a ENTER key event. Note: this method* does not change cursor position in the focused view - text is inserted at the location where* the cursor is currently pointed.

                                          * View preconditions:* 
                                          • must be displayed on screen* 
                                          • must support input methods* 
                                          • must be already focused* 
                                              */public static ViewAction typeTextIntoFocusedView(String stringToBeTyped) {return actionWithAssertions(new TypeTextAction(stringToBeTyped, false /* tapToFocus */));}/*** Returns an action that selects the view (by clicking on it) and types the provided string into* the view. Appending a \n to the end of the string translates to a ENTER key event. Note: this* method performs a tap on the view before typing to force the view into focus, if the view* already contains text this tap may place the cursor at an arbitrary position within the text.* 

                                              * View preconditions:* 
                                              • must be displayed on screen* 
                                              • must support input methods* 
                                                  */public static ViewAction typeText(String stringToBeTyped) {return actionWithAssertions(new TypeTextAction(stringToBeTyped));}/*** Returns an action that updates the text attribute of a view.* 

                                                  * View preconditions:* 
                                                  • must be displayed on screen* 
                                                  • must be assignable from EditText* 
                                                      */public static ViewAction replaceText(@Nonnull String stringToBeSet) {return actionWithAssertions(new ReplaceTextAction(stringToBeSet));}/*** Same as {@code openLinkWithText(Matcher linkTextMatcher)}, but uses* {@code is(linkText)} as the linkTextMatcher.*/public static ViewAction openLinkWithText(String linkText) {return openLinkWithText(is(linkText));}/*** Same as {@code openLink(Matcher linkTextMatcher, Matcher uriMatcher)}, but uses* {@code any(Uri.class)} as the uriMatcher.*/public static ViewAction openLinkWithText(Matcher linkTextMatcher) {return openLink(linkTextMatcher, any(Uri.class));}/*** Same as {@code openLinkWithUri(Matcher uriMatcher)}, but uses {@code is(uri)} as the* uriMatcher.*/public static ViewAction openLinkWithUri(String uri) {return openLinkWithUri(is(Uri.parse(uri)));}/*** Same as {@code openLink(Matcher linkTextMatcher, Matcher uriMatcher)}, but uses* {@code any(String.class)} as the linkTextMatcher.*/public static ViewAction openLinkWithUri(Matcher uriMatcher) {return openLink(any(String.class), uriMatcher);}/*** Returns an action that opens a link matching the given link text and uri matchers. The action* is performed by invoking the link's onClick method (as opposed to actually issuing a click on* the screen).* 

                                                      * View preconditions:* 
                                                      • must be displayed on screen* 
                                                      • must be assignable from TextView* 
                                                      • must have links* 
                                                          */public static ViewAction openLink(Matcher linkTextMatcher, Matcher uriMatcher) {checkNotNull(linkTextMatcher);checkNotNull(uriMatcher);return actionWithAssertions(new OpenLinkAction(linkTextMatcher, uriMatcher));}
                                                          }

                                                           


转:https://my.oschina.net/u/2253892/blog/619299



推荐阅读
  • Jupyter Notebook多语言环境搭建指南
    本文详细介绍了如何在Linux环境下为Jupyter Notebook配置Python、Python3、R及Go四种编程语言的环境,包括必要的软件安装和配置步骤。 ... [详细]
  • 二维码的实现与应用
    本文介绍了二维码的基本概念、分类及其优缺点,并详细描述了如何使用Java编程语言结合第三方库(如ZXing和qrcode.jar)来实现二维码的生成与解析。 ... [详细]
  • 问题描述现在,不管开发一个多大的系统(至少我现在的部门是这样的),都会带一个日志功能;在实际开发过程中 ... [详细]
  • 本文深入探讨了Go语言中的接口型函数,通过实例分析其灵活性和强大功能,帮助开发者更好地理解和运用这一特性。 ... [详细]
  • Web动态服务器Python基本实现
    Web动态服务器Python基本实现 ... [详细]
  • importjava.io.*;importjava.util.*;publicclass五子棋游戏{staticintm1;staticintn1;staticfinalintS ... [详细]
  • 深入解析WebP图片格式及其应用
    随着互联网技术的发展,无论是PC端还是移动端,图片数据流量占据了很大比重。尤其在高分辨率屏幕普及的背景下,如何在保证图片质量的同时减少文件大小,成为了亟待解决的问题。本文将详细介绍Google推出的WebP图片格式,探讨其在实际项目中的应用及优化策略。 ... [详细]
  • 本文介绍如何使用JavaScript中的for循环来创建一个九九乘法表,适合初学者学习循环结构的应用。 ... [详细]
  • Requests库的基本使用方法
    本文介绍了Python中Requests库的基础用法,包括如何安装、GET和POST请求的实现、如何处理Cookies和Headers,以及如何解析JSON响应。相比urllib库,Requests库提供了更为简洁高效的接口来处理HTTP请求。 ... [详细]
  • Python 领跑!2019年2月编程语言排名更新
    根据最新的编程语言流行指数(PYPL)排行榜,Python 在2019年2月的份额达到了26.42%,稳坐榜首位置。 ... [详细]
  • 在OpenCV 3.1.0中实现SIFT与SURF特征检测
    本文介绍如何在OpenCV 3.1.0版本中通过Python 2.7环境使用SIFT和SURF算法进行图像特征点检测。由于这些高级功能在OpenCV 3.0.0及更高版本中被移至额外的contrib模块,因此需要特别处理才能正常使用。 ... [详细]
  • 本文介绍如何在阿里云环境中利用 Docker 容器化技术部署一个简单的 Flask Web 应用,并确保其可通过互联网访问。内容涵盖 Python 代码编写、Dockerfile 配置、镜像构建及容器运行等步骤。 ... [详细]
  • 高级缩放示例.就像谷歌地图一样.它仅缩放图块,但不缩放整个图像.因此,缩放的瓷砖占据了恒定的记忆,并且不会为大型缩放图像调整大小的图像.对于简化的缩放示例lookhere.在Win ... [详细]
  • PyCharm 安装与首个 Python 程序实践
    本文将指导您如何安装 PyCharm,并通过创建一个简单的 'Hello, World' 程序来初步体验这一强大的 Python 集成开发环境。 ... [详细]
  • 汇编语言:编程世界的始祖,连C语言都敬畏三分!
    当C语言还在萌芽阶段时,它首次接触到了汇编语言,并对其简洁性感到震惊。尽管汇编语言的指令极其简单,但它却是所有现代编程语言的基础,其重要性不言而喻。 ... [详细]
author-avatar
布丁宝宝-_932
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有