上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页
摘要: #encoding=utf-8 import unittest import time from selenium import webdriver from selenium.webdriver import ActionChains class VisitSogouByIE(unittest.TestCase): def setUp(self): #启动IE浏览器... 阅读全文
posted @ 2018-04-04 09:58 小七Libra 阅读(467) 评论(0) 推荐(0) 编辑
摘要: #encoding=utf-8 import unittest import time from selenium import webdriver from selenium.webdriver import ActionChains class VisitSogouByIE(unittest.TestCase): def setUp(self): #启动IE浏览器... 阅读全文
posted @ 2018-04-03 17:20 小七Libra 阅读(864) 评论(0) 推荐(0) 编辑
摘要: 弹层和弹框是有区别的,弹框是那种完全没样式的框子;弹层是可以直接看到html的,有样式 阅读全文
posted @ 2018-04-03 17:18 小七Libra 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: #encoding=utf-8 import unittest import time from selenium import webdriver from selenium.webdriver import ActionChains class VisitSogouByIE(unittest.T 阅读全文
posted @ 2018-04-03 17:10 小七Libra 阅读(1170) 评论(0) 推荐(0) 编辑
摘要: #encoding=utf-8 import unittest import time from selenium import webdriver from selenium.webdriver import ActionChains class VisitSogouByIE(unittest.TestCase): def setUp(self): #启动IE浏览器... 阅读全文
posted @ 2018-04-03 17:08 小七Libra 阅读(883) 评论(0) 推荐(0) 编辑
摘要: #encoding=utf-8 import unittest import time from selenium import webdriver from selenium.webdriver import ActionChains class VisitSogouByIE(unittest.TestCase): def setUp(self): #启动IE浏览器... 阅读全文
posted @ 2018-04-03 17:07 小七Libra 阅读(1318) 评论(0) 推荐(0) 编辑
摘要: #encoding=utf-8 import unittest import time from selenium import webdriver from selenium.webdriver import ActionChains class VisitSogouByIE(unittest.TestCase): def setUp(self): #启动IE浏览器... 阅读全文
posted @ 2018-04-03 17:05 小七Libra 阅读(3533) 评论(0) 推荐(0) 编辑
摘要: #encoding=utf-8 from selenium import webdriver import time from selenium.webdriver.common.by import By from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import e... 阅读全文
posted @ 2018-04-03 17:04 小七Libra 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 推荐使用显示等待,元素出现就不会等待而继续执行了。节省时间。 阅读全文
posted @ 2018-04-03 17:03 小七Libra 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 隐式等待是只要有一个元素在设置的时间内没有找到,就会报超时 隐式等待是一个全局的设置,只要放在找东西语句的前面,它后面的找东西的语句都会默认等待设置的时间(这里是10秒),这是死等,除非立刻找到了,5秒找到了也是会等10秒。 隐式等待比较耗时,不推荐使用。 阅读全文
posted @ 2018-04-03 17:01 小七Libra 阅读(260) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 15 下一页