使用Splinter在表单中输入字符串

时间:2019-02-15 00:26:45

标签: python python-3.x splinter

我正在尝试在Amazon页面上的表单中输入字符串。我在做什么错了?

from splinter import Browser
import time

url = 'https://sellercentral.amazon.com/fba/profitabilitycalculator/index?lang=en_US'

executable_path = {'executable_path': 'chromedriver.exe'}
browser = Browser('chrome', **executable_path, headless=False)

browser.visit(url)
time.sleep(2)
browser.find_by_id('search-form').first.type('Steve Jobs')
time.sleep(5)
browser.quit()

更新

我可以使用以下方式单击表单:

browser.find_by_xpath(".//form//input[@type='text']").first.click()

但是,我无法填写表格。

0 个答案:

没有答案