2017-05-05 92 views

回答

1

你試過Splinter

這是使用它瀏覽器交互的一個簡單的例子。

from splinter import Browser 

with Browser() as browser: 
    # Visit URL 
    url = "http://www.google.com" 
    browser.visit(url) 
    browser.fill('q', 'splinter - python acceptance testing for web applications') 
    # Find and click the 'search' button 
    button = browser.find_by_name('btnG') 
    # Interact with elements 
    button.click() 
    if browser.is_text_present('splinter.readthedocs.io'): 
     print("Yes, the official website was found!") 
    else: 
     print("No, it wasn't found... We need to improve our SEO techniques") 
相關問題