python webdriver api-操作日期元素的方法

操作日期元素

第一种方式直接向输入框输入日期

dateInputBox = self.driver.find_element_by_id("datepicker")
dateInputBox.send_keys("11/24/2016")

#encoding=utf-8

from selenium import webdriver

import unittest, time, traceback

from selenium.webdriver.support.ui import WebDriverWait

from selenium.webdriver.common.by import By

from selenium.webdriver.support import expected_conditions as EC

from selenium.common.exceptions import TimeoutException, NoSuchElementException

class TestDemo(unittest.TestCase):

def setUp(self):

# 启动Chrome浏览器

#self.driver = webdriver.Ie(executable_path = "e:\\IEDriverServer")

self.driver = webdriver.Firefox(executable_path = "d:\\geckodriver")

def test_datePicker(self):

url = "http://jqueryui.com/resources/demos/datepicker/other-months.html"

# 访问指定的网址

self.driver.get(url)

try:

# 创建一个显示等待对象

wait = WebDriverWait(self.driver, 10, 0.2)

# 显示等待判断被测试页面上的日期输入框是否可见并且能被点击

wait.until(EC.element_to_be_clickable((By.ID, ‘datepicker‘)))

except TimeoutException, e:

# 捕获TimeoutException异常

print traceback.print_exc()

except NoSuchElementException, e:

# 捕获NoSuchElementException异常

print traceback.print_exc()

except Exception, e:

# 捕获其他异常

print traceback.print_exc()

else:

# 查找被测试页面上的日期输入框页面元素

dateInputBox = self.driver.find_element_by_id("datepicker")

# 查找到日期输入框,直接输入指定格式的日期字符串

# 就可以变相模拟在日期控件上进行选择了

dateInputBox.send_keys("11/24/2016")

time.sleep(3)

def tearDown(self):

# 退出IE浏览器

self.driver.quit()

if __name__ == ‘__main__‘:

unittest.main()

D:\test>python test.py

.

----------------------------------------------------------------------

Ran 1 test in 31.638s

OK

第二种方式点选,找到某个日期,直接选

dateInputBox = self.driver.find_element_by_id("datepicker")
dateInputBox.click()
self.driver.find_element_by_xpath(".//*[@id=‘ui-datepicker-div‘]/table/tbody/tr[2]/td[1]/a").click()
如果想跨天可以点击下边元素试试

//*[@id=‘ui-datepicker-div‘]/div/a[2]/span

#self.driver = webdriver.Firefox(executable_path = "d:\\geckodriver")

#encoding=utf-8

from selenium import webdriver

import unittest, time, traceback

from selenium.webdriver.support.ui import WebDriverWait

from selenium.webdriver.common.by import By

from selenium.webdriver.support import expected_conditions as EC

from selenium.common.exceptions import TimeoutException, NoSuchElementException

class TestDemo(unittest.TestCase):

def setUp(self):

# 启动Chrome浏览器

self.driver = webdriver.Firefox(executable_path = "d:\\geckodriver")

def test_datePicker(self):

url = "http://jqueryui.com/resources/demos/datepicker/other-months.html"

# 访问指定的网址

self.driver.get(url)

try:

# 创建一个显示等待对象

wait = WebDriverWait(self.driver, 10, 0.2)

# 显示等待判断被测试页面上的日期输入框是否可见并且能被点击

wait.until(EC.element_to_be_clickable((By.ID, ‘datepicker‘)))

except TimeoutException, e:

# 捕获TimeoutException异常

print traceback.print_exc()

except NoSuchElementException, e:

# 捕获NoSuchElementException异常

print traceback.print_exc()

except Exception, e:

# 捕获其他异常

print traceback.print_exc()

else:

# 查找被测试页面上的日期输入框页面元素

dateInputBox = self.driver.find_element_by_id("datepicker")

# 查找到日期输入框,直接输入指定格式的日期字符串

# 就可以变相模拟在日期控件上进行选择了

# dateInputBox.send_keys("11/24/2016")  #直接输入的方式,

dateInputBox.click()

time.sleep(1)

self.driver.find_element_by_xpath(".//*[@id=‘ui-datepicker-div‘]/table/tbody/tr[2]/td[1]/a").click()

time.sleep(3)

def tearDown(self):

# 退出IE浏览器

self.driver.quit()

if __name__ == ‘__main__‘:

unittest.main()

D:\test>python test.py

.

----------------------------------------------------------------------

Ran 1 test in 32.865s

OK

原文地址:https://www.cnblogs.com/xiaxiaoxu/p/9203256.html

时间: 2024-10-29 07:19:21

python webdriver api-操作日期元素的方法的相关文章

Python Elasticsearch API操作ES集群

环境 Centos 7.4 Python 2.7 Pip 2.7 MySQL-python 1.2.5 Elasticsearc 6.3.1 Elasitcsearch6.3.2 知识点 调用Python Elasticsearh API Python Mysqldb使用 DSL查询与聚合 Pyehon 列表操作 代码 #!/usr/bin/env python # -*- coding: utf-8 -*- #minyt 2018.9.1 #获取24小时内出现的模块次数 # 该程序通过elas

第三章 python webdriver API(三)——设置等待

"""" 设置等待时间 sleep():设置固定休眠时间.python的time包提供了休眠方法sleep(),导入time包就可以使用sleep()进行脚本的执行过程进行休眠 implicitly_wait():是webdriver提供的一个超时等待.隐的等待一个元素被发现,或一个命令完成. 如果超出了设置时间的则抛出异常. WebDriverWait():同样也是webdriver提供的方法.在设置时间内,默认每隔一段时间检测一次当前页面元素是否存在, 如果超出

Python中对时间日期的处理方法简单汇总

这篇文章主要介绍了Python实用日期时间处理方法汇总,本文讲解了获取当前datetime.获取当天date.获取明天/前N天.获取当天开始和结束时间(00:00:00 23:59:59).获取两个datetime的时间差.获取本周/本月/上月最后一天等实用方法 ,需要的朋友可以参考下 原地址:http://www.cnblogs.com/wenBlog/p/6097220.html 原则, 以datetime为中心, 起点或中转, 转化为目标对象, 涵盖了大多数业务场景中需要的日期转换处理 步

操作Iframe元素的方法

操作iframe元素:方法一:直接选择iframe中的元素 —— $("body",$("#iframe").contents()):方法二:在iframe中查找元素 —— $("#iframe").contents().find("body"):

python里三种等待元素的方法

在做web或app的自动化测试经过会出现找不到元素而报错的情况,很多时候是因为元素 还没有被加载出来,查找的代码就已经被执行了,自然就找不到元素了.那么我可以用等待 元素加载完成后再执行查找元素的code. Python里有三种等待的方式:一. 强制等待 Sleep(54) 这个方法在time模块,使用时通过from time import sleep导入比如: Sleep(10) #表示强行等待10s再执行下一句代码 Driver.find_element_by_xpath("xxxxxx&q

转:python webdriver API 之定位 frame 中的对象

在 web 应用中经常会出现 frame 嵌套的应用,假设页面上有 A.B 两个 frame,其中 B 在 A 内,那么定位 B 中的内容则需要先到 A,然后再到 B.switch_to_frame 方法可以把当前定位的主体切换了 frame 里.怎么理解这句话呢?我们可以从 frame的实质去理解.frame 中实际上是嵌入了另一个页面,而 webdriver 每次只能在一个页面识别,因此才需要用 switch_to.frame 方法去获取 frame 中嵌入的页面,对那个页面里的元素进行定位

python webdriver API学习笔记

浏览器操作 driver.maximize_window() #浏览器最大化 driver.set_window_size(480,800) #设置浏览器宽,高 driver.back() & driver.forward() #后退,前进 定位 find_element_by_id() find_element_by_name() find_element_by_class_name() find_element_by_tag_name() find_element_by_link_text(

python学习-python webdriver API

#1.导入webdriver包 from selenium import webdriver #2.打开浏览器,打开网站 browser = webdriver.Firefox() browser.get("https://www.baidu.com") #3.浏览器最大化 browser.maximize_window() #4.自定义浏览器窗口大小 browser.set_window_size(700,800) #5.关闭浏览器 browser.quit() #6.浏览器前进后退

常用JavaScript操作页面元素的方法

1.取得dropdownlist的选中值 var ddl =document.getElementById('<%=ddlusers.ClientID%>'); var index = ddl.selectedIndex; var Value = ddl.options[index].value; var Text = ddl.options[index].text; 2.给textbox文本框赋值 document.getElementById('<%=txtzfry.ClientID