ICode9

精准搜索请尝试: 精确搜索
  • selenium自动化测试使用xpath定位如下报错(The result of the xpath expression "//span[@class='numrows'2022-08-03 18:04:11

    一、问题描述   使用python+selenium进行自动化测试定位获取标签里面的文本内容出现如下报错:   selenium.common.exceptions.InvalidSelectorException: Message: invalid selector: The result of the xpath expression "//span[@class='numrows']/font/text()" is: [object

  • selenium2022-08-02 22:01:10

    目录selenium基本使用基本使用模拟登录百度查找控件,点击,输入文本无界面浏览器selenium其它用法获取位置属性大小,文本等待元素被加载元素操作执行js代码切换选项卡浏览器前进后退异常处理selenium登录cnblogs获取cookie获取cookie打开页面 selenium基本使用 由于requests不能执行js

  • 爬虫之selenium2022-08-02 18:04:04

    目录selenium介绍基本使用selenium用法元素操作等待元素被加载元素各项属性执行js代码切换选项卡浏览器前进后退无界面浏览器异常处理登录获取cookie保存 selenium介绍 由于requests模块不能执行js,有的页面内容,我们在浏览器中可以看到,但是请求下来没有。 selenium模块:模拟操作浏览

  • Selenium自动化测试之Selenium IDE2022-07-31 11:01:20

    简介 Selenium IDE 是实现Web自动化的一种便捷工具,本质上它是一种浏览器插件。该插件支持Chrome和Firefox浏览器,拥有录制、编写及回放操作等功能,能够快速实现Web的自动化测试 使用场景 Selenium IDE本身的定位并不是用于复杂的自动化场景,而是用于一些对效率拥有极高要求的简易场

  • selenium常用方法2022-07-29 17:35:49

    # text方法,获取超链接即<a></a>之间的文字: Driver.find_element_by_link_text("网上申请").text #Get_attribute()获取属性值: driver.find_element_by_id("kw").get_attribute('type') # Maximize_window()实现浏览器窗口最大化: driver

  • iframe处理2022-07-29 17:04:23

    from selenium import webdriver from selenium.webdriver.common.by import By from webdriver_manager.chrome import ChromeDriverManager driver = webdriver.Chrome(ChromeDriverManager().install()) driver.maximize_window() driver.get('https://www.w3school.

  • Selenium--WEB自动化测试工具2022-07-27 11:03:34

    读者提问:WEB 自动化测试工具有推荐的吗 ?   阿常回答:有,Selenium。官网地址:https://www.selenium.devGithub地址:https://github.com/selenium/selenium (开源社区) 阿常碎碎念:   Selenium 测试直接在浏览器中运行,就像真实用户所做的一样。Selenium 测试可以在 Windows、Linux 和

  • 使用selenium grid实现下发任务到远程机器,远程执行测试用例2022-07-27 10:03:59

    背景: 1、 UI自动化测试用例, 可能想要在不同版本、不同浏览器下执行 2、 UI自动化测试用例较多的时候,耗时时间长,这个时候可以通过分散在不同的机器上执行,减少自动化测试时间 实现 通过selenium grid来实现分布式测试,其整个结构有一个hub的主节点和若干个node代理节点组成。hub用来

  • python-selenium对下拉选择框的操作,Select类2022-07-27 00:33:24

    首先要确认下拉选择框,是通过html中的select-option标签组合而成的 **Select类只能操作select-option组成的下拉选择框**,例如 <select id="s1Id"> <option></option> <option value="o1" id="id1">o1</option> <option value="o2" id=&q

  • Python_Selenium的等待操作2022-07-25 16:01:54

      在跑自动化脚本时,有时候因为网络或者其他因素的影响会导致元素还没加载出来然后报not find element错误,所以这时候就需要注意添加等待 selenium的等待分为3种: 1、固定等待 2、智能等待 3、显示等待   1、固定等待:线程停止 time.sleep(2)   2、隐式等待(智能等待):对网页所有

  • selenium 浏览器的其他操作2022-07-25 13:06:08

    from selenium import webdriver from selenium.webdriver.common.by import By import time # webdrive 获取浏览器对象 driver = webdriver.Chrome("chromedriver.exe") # 获取浏览器(Chrome)驱动 # 准备一个网址 url = "https://www.baidu.com/" driver.get(url) # 将地址发

  • [selenium]相对定位器2022-07-23 21:35:44

    前言 Relative Locators,相对定位器,是Selenium 4引入的一个新的定位器,相对定位器根据源点元素去定位相对位置的其它元素。 相对定位方法其实是基于JavaScript的 getBoundingClientRect() 而实现,简单的页面还行,复杂页面中可能会定位到需要相同类型的元素。比如要定位按钮A右边的按钮

  • python安装selenium库2022-07-23 20:35:04

    一. 安装selenium模块 pip install selenium -i https://pypi.tuna.tsinghua.edu.cn/simple 二. 根据浏览器的版本下载驱动 点击-->帮助-->关于Google Chrome http://chromedriver.storage.googleapis.com/index.html  然后根据操作系统下载相关的软件  三、将下载的文件

  • 文件上传2022-07-23 19:02:40

    安装autoit这个工具。 autoit V3工具是用来查看windows窗口信息及控件信息的 安装pyautoit模块。 解压pyautoit-master.zip文件 在windows窗口进入到解压目录之后,再在地址栏输入cmd 执行以下命令 python setup.py install     import time import autoit from selenium import

  • b0122 python 爬虫 (二)-selenium-自动化测试2022-07-23 00:31:07

    说明 使用chrome浏览器。 环境 参考 selenium+python爬虫全流程教程  前面 的安装过程 思路 查看浏览器chrome 版本,这里是 98.0.4758.102, 去官网下载 驱动程序 安装python 依赖包 selenium,这里装完后是 4.3.0   使用 工程路径 D:\1_common\python\code\projects\Bigdata2022\C

  • selenium键盘输入操作2022-07-21 11:02:30

    模拟键盘操作 导入包:from selenium.webdriver.common.keys import Keys 常用的键盘操作 1.send_keys(Keys.BACK_SPACE)------删除键 2.send_keys(Keys.SPACE)--------空格键 3.send_keys(Keys.TAB)------tab键 4.send_keys(Keys.ESCAPE)-------回退esc键 5.send_keys(Keys.ENTER)

  • python selenium 操作文件上传,并发操作时,文件选择窗口混乱解决方案2022-07-20 20:03:54

    上传文件 使用的是 python + autoit 模块,这种方式有一个问题,当出现多条任务同时选择文件上传的时候,无法判断那个文件选择窗口的归属,从而出现上传了错误的文件! 解决方法: 要上载文件而不单击上载按钮,在大多数情况下,您可以直接将文件发送到该页上的某个元素。这将是具有input标记名和

  • 还在为兼容性测试发愁?让我们用Python来轻松搞定吧2022-07-18 09:43:39

    每天进步一点点,关注我们哦,每天分享测试技术文章 本文章出自【码同学软件测试】 码同学公众号:自动化软件测试,领取资料可加:magetest 码同学抖音号:小码哥聊软件测试   随着互联网的发展急速发展,浏览器的样式也层出不穷,这样测试前端功能的小伙伴的工作量就很大,需要测试前端功能在不同

  • Selenium的基本使用2022-07-16 17:34:46

    环境配置 1.在pycharm中下载Selenium  2.谷歌浏览器驱动程序下载地址: http://chromedriver.storage.googleapis.com/index.html 简单小例子 import time from selenium import webdriver # 设置自动化打开的浏览器访问网址 url = 'https://www.cnblogs.com/' # 设置谷歌浏览

  • Python爬虫学习02(使用selenium爬取网页数据)2022-07-13 21:05:19

    Python爬虫学习02(使用selenium爬取网页数据) 目录Python爬虫学习02(使用selenium爬取网页数据)1.1,使用的库1.2,流程1.3,用到的函数1.3,示例:利用selenium从中华人民共和国民政部网站获取行政区划信息1.4,优化1.4.1,问题描述 1.1,使用的库 from selenium import webdriver from selenium.

  • selenium之下拉列表2022-07-13 12:00:41

    1 import time 2 from selenium.webdriver import Chrome 3 from selenium.webdriver.chrome.options import Options 4 from selenium.webdriver.common.by import By 5 from selenium.webdriver.support.select import Select 6 7 # 浏览器参数配置 8 # 无窗口 9 opt

  • [selenium]点击元素出现的obscure问题2022-07-12 18:35:54

    前言 我们一般使用如下方式点击元素: elem = driver.find_element(...) elem.click() # 或者使用带等待条件的方式 elem = WebDriverWait(driver, 10).until(EC.xxx(...)) elem.click() 正常情况下,这样去做是没问题的,但某些情况下可能会有报错: selenium.common.exceptions.Elemen

  • selenium远程控制浏览器2022-07-08 16:03:52

    1、在被控制机器上运行 chromedriver.exe --port=9515 --allowed-ips=控制机器IP    2、控制机器上运行 options = Options()options.binary_location = r'被控制机器上浏览器位置'driver = webdriver.Remote("http://被控制电脑IP:9515", options=options)driver.get("http://

  • day022022-07-06 22:01:42

    TestLogin.java 测试登录 package com.bwf.autotest.day02; import org.openqa.selenium.By; import org.openqa.selenium.WebDriver; import org.openqa.selenium.firefox.FirefoxDriver; public class TestLogin { public static void main(String[] args) { Web

  • selenium之options配置2022-07-05 06:32:41

    浏览器配置options selenium4.0 页面加载策略page_load_strategy from selenium import webdriver from selenium.webdriver.chrome.options import Options options = Options() options.page_load_strategy = 'normal' driver = webdriver.Chrome(options=options) page_loa

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有