1、MJPopupBackgroundView 1.1 MJPopupBackgroundView.h 1.2 MJPopupBackgroundView.h 2、UIViewController+MJPopupViewController 2.1 UIViewController+MJPopupV ...
分类:
其他好文 时间:
2018-09-16 18:02:03
阅读次数:
253
Major Opioid Maker to Pay for Overdose-Antidote Development A company whose prescription opioid marketing practices are being blamed for sparking the ...
分类:
其他好文 时间:
2018-09-06 11:06:13
阅读次数:
187
用create-react-app做项目的时候,同时引入了antd,为了实现按需加载antd模块,用到他们提供的 babel-plugin-import ( 一个用于按需加载组件代码和样式的 babel 插件) 虽然项目一开始是用create-react-app创建,但是之后有 yarn run e ...
分类:
其他好文 时间:
2018-07-04 15:08:09
阅读次数:
2824
不是所有的弹出框都叫alert,在使用alert方法前,先要识别出到底是不是alert。先认清楚alert长什么样子,下次碰到了,就可以用对应方法解决。 alert\confirm\prompt弹出框操作主要方法有: text:获取文本值 accept() :点击"确认" dismiss() :点击 ...
分类:
其他好文 时间:
2018-06-23 21:01:14
阅读次数:
140
1 //dismiss到根视图 2 - (void)dismissToRootViewController{ 3 UIViewController *vc = self; 4 while (vc.presentingViewController) { 5 vc = vc.presentingView... ...
分类:
其他好文 时间:
2018-06-13 16:33:25
阅读次数:
190
miss [n.]小姐 2003 1 阅读 “Miss Baxter,” he says, “could you please send in someone who can distinguish right from wrong?” dismiss [v.] 不考虑;解雇 2013 6 阅读 T ...
分类:
其他好文 时间:
2018-06-10 11:52:03
阅读次数:
165
https://www.jianshu.com/p/d6cb54d2eaa1 这篇文章给出的方案是可行的。 经测试,想要第一个界面强制横屏,第二个界面强制竖屏, dismiss掉之后回到第一个界面依然强制横屏。用户的手机设备禁止旋转按钮不打开状态下,旋转手机屏幕能依然强制横屏或者竖屏。 第一个界面强 ...
分类:
移动开发 时间:
2018-06-01 13:21:23
阅读次数:
897
Selenium的弹窗处理!对话框相信大家都不陌生,常见的对话框为三种alert、confirm、prompt。这些对话框对Selenium来说不算是界面层的东西。因为他是JS做的。看到这是不是想到了利用之前的JS代码了?不过Selenium解决了这个问题,给我们提供了三个基本方法:accept();、dismiss();、sendKeys();、等方法。这三个分别对应确认、取消、输入。通过这三个
分类:
其他好文 时间:
2018-05-30 14:29:04
阅读次数:
221
在WebDriver中处理JavaScript所生成的alert、confirm以及prompt十分简单,具体做法是使用 switch_to.alert 方法定位到 alert/confirm/prompt,然后使用text/accept/dismiss/ send_keys等方法进行操作。 tex ...
分类:
其他好文 时间:
2018-05-13 21:38:59
阅读次数:
6722
前言 不是所有的弹出框都叫alert,在使用alert方法前,先要识别出到底是不是alert。先认清楚alert长什么样子,下次碰到了,就可以用对应方法解决。 alert\confirm\prompt弹出框操作主要方法有: text:获取文本值 accept() :点击"确认" dismiss() ...
分类:
编程语言 时间:
2018-05-06 12:19:00
阅读次数:
209