码迷,mamicode.com
首页 >  
搜索关键字:handles    ( 268个结果
python自动化脚本初学记录之窗口切换(3)
如果打开多个浏览器窗口,即存在多个句柄,那么窗口和句柄对应关系如下:例如:浏览器窗口打开顺序从左到右为:1,2,3,4,5 对应的句柄顺序为:0,4,3,2,1driver.switch_to.window(handles[0]):切换到第1个窗口句柄(从左到右数第1个窗口,主页面)driver.s ...
分类:编程语言   时间:2018-10-28 18:03:25    阅读次数:212
MATLAB图形界面设计(下)
文章参考Blue Mountain https://www.cnblogs.com/BlueMountain-HaggenDazs/p/4307777.html 一、菜单设计 1.建立菜单项 (1)建立一级菜单的函数调用: 一级菜单句柄=uimenu(图形窗口句柄,属性名1,属性值1,属性名2,属性 ...
分类:其他好文   时间:2018-10-27 11:57:05    阅读次数:184
打开文件对话框 保存一个txt文件 比较简单用的时候省的搜索了
SaveFileDialog sfd = new SaveFileDialog(); sfd.Filter = "Text (*.txt)|*.txt|All Files (*.*)|*.*"; sfd.FileName = "板材清单" + DateTime.Now.ToShortDateStri ...
分类:其他好文   时间:2018-10-23 21:18:01    阅读次数:216
Mojo C++ Platform API
Mojo C++ Platform API This document is a subset of the Mojo documentation. Contents Overview Platform Handles Platform Channels Named Platform Channel ...
分类:编程语言   时间:2018-10-16 20:50:25    阅读次数:328
selenium入门14 窗口切换
窗口切换: 当前窗口句柄 current_window_handle 所有的窗口句柄 window_handles 切换窗口 switch_to_window() 所有的窗口句柄 window_handles 切换窗口 switch_to_window() 切换窗口 switch_to_window ...
分类:其他好文   时间:2018-10-11 10:26:34    阅读次数:144
定位方式(d16)
一,回顾, ①selector和xpath的区别,selector是解析的html,xpth是解析的xml,所以使用selector比使用xpath快, ②定位元素的单数和复数,当使用单数定位不到元素的时候使用复数形式 ③切换浏览器标签页:current_handle是浏览器当前句柄,handles ...
分类:其他好文   时间:2018-09-22 12:51:38    阅读次数:180
利用Nomad构建弹性基础设施: 容错和中断恢复
In this series we explore how Nomad handles unexpected failures, outages, and routine maintenance of cluster infrastructure, often without operator intervention.
分类:其他好文   时间:2018-09-22 10:33:50    阅读次数:203
CookieMonster
For Developers? > ?Design Documents? > ?Network Stack? > ? CookieMonster The CookieMonster is the class in Chromium which handles in-browser storage, ...
分类:其他好文   时间:2018-09-19 16:22:46    阅读次数:203
用Nomad构建弹性基础设施:调度和自我修复
This is the second post in our series?Building Resilient Infrastructure with Nomad. In this series we explore how Nomad handles unexpected failures, outages, and routine maintenance of cluster infrastructure, often without operator intervention required.
分类:其他好文   时间:2018-09-10 19:48:48    阅读次数:185
浅谈react受控组件与非受控组件
在react中,组件内部主要是通过props和state来存储组件的属性与状态的。其中props是通过父组件传入,在组件内部不能进行修改。而state是保存可变状态的一个对象,通过this.setState方法进行修改,注意不能直接使用this.state.xx = ?来进行修改,这样是没有效果的。 ...
分类:其他好文   时间:2018-09-09 15:08:46    阅读次数:168
268条   上一页 1 ... 7 8 9 10 11 ... 27 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!