您好,登錄后才能下訂單哦!
數據文件:
testdata.txt
visit||http://www.bing.com
visit||${e:\urls.txt}
urls.txt
http://www.sohu.com
http://www.sogou.com
http://www.baidu.com
#encoding=utf-8
from selenium import webdriver
import re
driver = webdriver.Chrome(executable_path="d:\\chromedriver")
def visit(url):
global driver
driver.get(url)
def main(filepath):
with open(filepath) as fp:
for line in fp:
if line.strip():
if re.search(r"\${(.*?)}",line):
action = line.split("||")[0]
data_file = re.search(r"\${(.*?)}",line).group(1)
with open(data_file) as file_obj:
for url in file_obj:
command = "%s('%s')" %(action,url.strip())
eval(command)
else:
action = line.split("||")[0]
url = line.split("||")[1].strip()
command = "%s('%s')" %(action,url)
eval(command)
if __name__ == "__main__":
main("E:\\python\\自動化\\testdata.txt")
driver.quit()
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。