Windows定時計劃執行Python

來源:互聯網
上載者:User

標籤:

先看下定時執行的py檔案

#coding:gbkfrom selenium import webdriverimport time,osdriver = webdriver.PhantomJS()#chromedriver = "C:\Program Files (x86)\Google\Chrome\Application\chromedriver.exe"     #調用chrome安裝資料夾下的驅動檔案(驅動需要下載)#os.environ["webdriver.chrome.driver"] = chromedriver#driver = webdriver.Chrome(chromedriver)driver.get(‘http://passport.cnblogs.com/user/signin‘)driver.find_element_by_id("input1").send_keys(‘name*****‘)driver.find_element_by_id("input2").send_keys(‘password****‘)driver.find_element_by_id("signin").click()print ‘logining‘time.sleep(3)driver.get(‘http://i.cnblogs.com/Configure.aspx‘)time.sleep(3)head2_title=u‘<a id="Header2_HeaderTitle" class="headermaintitle" href="http://www.cnblogs.com/hito/">學如逆水行舟,不進則退</a>‘driver.find_element_by_id("Edit_txbSubtitle").clear()driver.find_element_by_id("Edit_txbSubtitle").send_keys(head2_title)edit_css=u‘#Header2_HeaderTitle{font-size: 120%;font-weight: bold;line-height: 1.5em;font-family: "微軟雅黑", "verdana","ms song","宋體","Arial","Helvetica", "sans-serif";margin: 0;padding: 0;color: white;}‘driver.find_element_by_id("Edit_txbSecondaryCss").clear()driver.find_element_by_id("Edit_txbSecondaryCss").send_keys(edit_css)  driver.find_element_by_id("Edit_lkbPost").click()driver.quit()print ‘OK‘

寫這個的原因呢是因為副標題的Id和css每天都會自動變化,導致部落格園樣式走樣,所以直接執行這個檔案就可以了

windows定時計劃設定

控制台-->管理工具-->工作排程器-->建立任務

設定名稱,觸發器tab中設定任務觸發條件及定時參數的設定,操作tab中直接引用py檔案,其他設定根據提示設定

Windows定時計劃執行Python

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.