码迷,mamicode.com
首页 >  
搜索关键字:webdriver grid    ( 6583个结果
EF下怎么理解IEnumerable/ICollection/IQueryable?
IEnumerable 最基本的列表容器,连列表项Count都不能获取 允许遍历, 但不允许添加、删除、更新列表项 支持使用where linq查询 适合填充Grid展示及筛选 ICollection IEnumerable 的扩展,增加了添加、删除、更新等操作 可以获取列表项Count, 获得Co ...
分类:编程语言   时间:2020-04-19 13:09:59    阅读次数:105
Selenium---Python3---weddriver错误截图
通过函数get_screenshot_as_file()来捕获错误截图,详细看下面举例: #coding = utf-8 from selenium import webdriver import time #Selenium cookie处理 #D:\chromedriver_win32\chro ...
分类:编程语言   时间:2020-04-19 00:46:42    阅读次数:58
Leetcode 1254. Number of Closed Islands
Leetcode 1254. Number of Closed Islands Given a 2D grid consists of 0s (land) and 1s (water). An island is a maximal 4 directionally connected group o ...
分类:其他好文   时间:2020-04-17 22:04:59    阅读次数:63
kendo中给grid表自动添加序号
columns: [ { field: "", title: "序号", template: "<span class='row-number'></span>", width:50 }] dataBound: function () { var rows = this.items(); $(row ...
分类:其他好文   时间:2020-04-17 12:44:24    阅读次数:102
Selenium---Python3---弹框处理
#!/usr/bin/env python from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains import time class driver_class(o ...
分类:编程语言   时间:2020-04-16 22:39:48    阅读次数:66
selenium - webdriver 操作cookie
常用操作cookie的方法如下: get_cookie(name='aaa') 获取key(name)为aaa的cookie get_cookies() 获取所有cookie add_cookie(dict) 添加cookie delete_cookie(name='aaa') 删除cookie d ...
分类:Web程序   时间:2020-04-16 15:33:45    阅读次数:100
[LeetCode] 695. Max Area of Island
岛屿的最大面积。给定一个包含了一些 0 和 1 的非空二维数组 grid 。一个 岛屿 是由一些相邻的 1 (代表土地) 构成的组合,这里的「相邻」要求两个 1 必须在水平或者竖直方向上相邻。你可以假设 grid 的四个边缘都被 0(代表水)包围着。找到给定的二维数组中最大的岛屿面积。如果没有岛屿, ...
分类:其他好文   时间:2020-04-16 15:00:42    阅读次数:47
selenium - webdriver 下拉框处理select
针对<select>标签,可使用如下方法: select_by_value() 通过value值定位下拉选项 select_by_index() 通过下拉选项的索引定位,从0开始 select_by_visible_text() 通过text值定位 百度搜索下拉框,如下: 分别选择每页显示20条,1 ...
分类:Web程序   时间:2020-04-15 21:17:10    阅读次数:86
web自动化 下拉框、切换到新窗口
一.下拉框 相信大家在手动测试web页面时,遇到过下拉框吧,那进行web自动化测试时,如何操作下拉框,且看下文 1.selenium中提供了方法,先导入Select方法 from selenium.webdriver.support.select import Select 2.实例化类 Selec ...
分类:Web程序   时间:2020-04-15 13:59:13    阅读次数:122
[LC] 694. Number of Distinct Islands
Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) connected 4-directionally (horizontal or vertical.) Yo ...
分类:其他好文   时间:2020-04-14 22:48:18    阅读次数:67
6583条   上一页 1 ... 42 43 44 45 46 ... 659 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!