python selenium 基础篇1.第一条用例
2021-03-08 05:29
标签:login end element from drive php dex test 提前 在上一篇中我们贴出来一些代码,用来验证所有环境是不是完全搞定,只要能启动浏览器打开网址就成功了。这一步我们开始一个最简单的场景 挨着test01.py,新建test02.py,敲入如下代码 可以成功登陆(需要自己提前在网站上手动注册) 这个就是一条完整的自动化用例,对应手动用例1,就实现了。 python selenium 基础篇1.第一条用例 标签:login end element from drive php dex test 提前 原文地址:https://www.cnblogs.com/yilinfengyi/p/14209177.html from selenium import webdriver
driver = webdriver.Chrome()
driver.get("http://automationpractice.com/index.php")
driver.find_element_by_xpath("//*[@class=‘login‘]").click()
driver.find_element_by_xpath("//*[@id=‘email‘]").send_keys("1457255937@qq.com")
driver.find_element_by_xpath("//*[@id=‘passwd‘]").send_keys("xxxx")
driver.find_element_by_xpath("//*[@id=‘SubmitLogin‘]").click()
文章标题:python selenium 基础篇1.第一条用例
文章链接:http://soscw.com/index.php/essay/61671.html