码迷,mamicode.com
首页 >  
搜索关键字:webdriver grid    ( 6583个结果
selenium.webdriver 模拟自动化抓取网页数据
from bs4 import BeautifulSoup import bs4, csv import time from selenium import webdriver from selenium.common.exceptions import TimeoutException from ...
分类:Web程序   时间:2020-10-10 17:43:05    阅读次数:26
driver.switch_to.frame()
切换到frame的三种方式: 1、id 2、name 3、标签名 # coding:utf-8 from selenium import webdriver # 实例化 driver = webdriver.Chrome() # 发起请求 driver.get("http://mail.163.co ...
分类:其他好文   时间:2020-09-21 11:55:13    阅读次数:42
冻结dgv列【封装DGV】
if (dgvRecord.Grid.DisplayLayout.Bands[0].Columns.Exists(nameof(DrugInout.DgInfo)) == true) { dgvRecord.Grid.DisplayLayout.Bands[0].Columns[nameof(Dru ...
分类:其他好文   时间:2020-09-18 04:06:19    阅读次数:30
webDriver下载与库导入
一.pom.xml中导入selenium相关包 <dependency> <groupId>org.seleniumhq.selenium</groupId> <artifactId>selenium-java</artifactId> <version>4.0.0-alpha-6</version ...
分类:Web程序   时间:2020-09-18 02:33:25    阅读次数:61
selenium——点击网页指定坐标
原文:https://www.cnblogs.com/pythonClub/p/10491857.html 1 2 3 4 5 6 7 from selenium import webdriver from selenium.webdriver.common.action_chains import ...
分类:Web程序   时间:2020-09-18 01:50:01    阅读次数:55
C#开发PACS医学影像处理系统(八):单元格变换
先看效果: 再看结构,Viewer(影像控件)分为N个Cell(单元格),每个单元格分为N个Box(影像容器), 当默认情况为2x2的行列时,结构如下图: 其中,我们在WPF设计器中创建一个用户控件叫Viewer,使用Grid容器,默认2x2,再根据自己的业务需要创建用户控件Cell和用户控件Box ...
分类:Windows程序   时间:2020-09-18 01:33:39    阅读次数:54
463. Island Perimeter
package LeetCode_463 /** * 463. Island Perimeter * https://leetcode.com/problems/island-perimeter/description/ * * You are given row x col grid repres ...
分类:其他好文   时间:2020-09-17 23:30:18    阅读次数:36
python 页面基类 Page封装 →driver层的封装(最底层的封装Page)
# coding=utf-8 import time from selenium.common.exceptions import NoSuchElementException from selenium.webdriver import ActionChains from selenium.web ...
分类:编程语言   时间:2020-09-17 22:22:43    阅读次数:27
ExtJs中Grid下拉框联动
selModel:{//键盘导航,false则键盘操作无效enableKeyNav:true,//选择模式SINGLE,SIMPLE,和MULTImode:‘MULTI‘,//点击checkbox框选中checkOnly:false,//在表头显示全选checkbox框showHeaderCheckbox:true,//复选框选择模式Ext.selection.CheckboxModelselTy
分类:Web程序   时间:2020-09-17 21:00:29    阅读次数:54
Python+Selenium自动化测试之163框架切换
import time from selenium import webdriver driver = webdriver.Chrome() driver.get("https://email.163.com") time.sleep(2) iframe = driver.find_elements ...
分类:编程语言   时间:2020-09-17 18:46:29    阅读次数:27
6583条   上一页 1 ... 11 12 13 14 15 ... 659 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!