「」"
author:佳期如夢
data:2020-11-06
function:python base study:順序、分支、迴圈
「」"「」"
語法:if true:
print(「true」)
else:
print(「else」)
「」"a = 「2」
b = 「5」
if a>b:
print(「a小於b,a的值是」+a)
else:
print(「b」)
s1 = 「a」
s2 = 「hello」
s1 == s2
if s1 == s2:
print(「true」)
else:
print(「二者不相等」)
s1 = 「g」
s2 = 「hello」
if s1 in s2:
print(「二者存在關係!!」)
else:
print(「二者不存在關係!!」)
username = 「tom」
password = 「123」
if username == 「tom」 and password == 「123」:
print(『登入成功!!!』)
else:
print(「登入失敗!!!」)
number = 59
if number >= 90:
print(「very good!!」)
elif number >= 70:
print(「good!!」)
elif number >= 60:
print(「及格!!!」)
else:
print(「不及格!!!」)
for迴圈:
#列印0-10:
print(「列印0-10」)
for i in range(10):
print(i)
列印1-10:
print(「列印1-11」)
for i in range(1,11):
print(i)
列印1、3、5、7、9:
print(「列印1-11中間隔2的數字」)
for i in range(1,11,2):
print(i)
列印迴圈字串:
id_ = 「username」
for i in range(5):
if id_ == 「liwenli」:
break
else:
print(「假裝休眠!!」)
else:
print(「沒有找到該元素!!!」)
selenium 自動化測試。
第一步安裝 谷歌瀏覽器。第三步編寫測試測試指令碼 第四步 安裝selemium coding utf 8 引入webdriver和unittest所需要的包 from selenium import webdriver from selenium.webdriver.common.by import...
Python自動化測試 Selenium
第乙個selenium就。先show from selenium import webdriver driver webdriver.firefox driver.get assert oxcoder decode utf 8 in driver.title print driver.title d...
自動化測試selenium(四)
三 用例的執行順序 四 unittest斷言 unittest 各元件的關係為 test fixture 初始化和清理測試環境,比如建立臨時的資料庫,檔案和目錄等,其中 setup 和 setdown 是最常用的方法 test case 單元測試用例,testcase 是編寫單元測試用例最常用的類 ...