2017-05-05 23 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") 
関連する問題