文件名称:第一个脚本-python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
文件大小:617KB
文件格式:PDF
更新时间:2024-06-27 15:59:12
selenium webdriver python
二、开始第一个脚本 2.1 为什么选 python 之前的菜鸟系列是基于 java 的,一年没学其实也忘的差不多了,目前所测的产品 部分也是 python 写的,而且团队也在推广 python ,其实就测试人员来说,python 也 相当受欢迎。易学,易用。翻翻各测试招聘,python 出现的概率也颇高。(个人原因) 最重要的还是 python 简单易学,应用也相对广泛;是测试人员学习编程的不二之选。 下面看看 python 穿上 selenium webdriver 是多么的性感: 2.2 第一个脚本 # coding = utf-8 from selenium import webdriver browser = webdriver.Firefox() browser.get("http://www.baidu.com") browser.find_element_by_id("kw").send_keys("selenium")