Questions tagged [splinter]

Splinter is an open source tool for testing web applications using Python

Splinter is an open source tool for testing web applications using Python. It lets you automate browser actions, such as visiting URLs and interacting with their items.

329 questions
6
votes
2 answers

Sending Keys Using Splinter

I want to test an autocomplete box using Splinter. I need to send the 'down' and 'enter' keys through to the browser but I'm having trouble doing this. I am currently finding an input box and typing 'tes' into that box…
lukeaus
  • 11,465
  • 7
  • 50
  • 60
6
votes
1 answer

filling in input fields with splinter

I am trying to fill in fields on a login form with splinter. When I examine the rendered page, I see that the username input box has both a tag and a name of "u". How can I fill in this field from splinter? I tried the following: from splinter…
user3677370
  • 63
  • 1
  • 3
6
votes
4 answers

Can I somehow select a specific element from dropdown list on the page via splinter module in Python

Can I somehow select a specific element from dropdown list on the page via splinter module in Python? I have the following HTML code: It seems in the command "browser.select("foo", value)" a value is needed. Is there a workaround…
Hans Xeng
  • 63
  • 4
4
votes
2 answers

Where I have to put the Firefox Profile to use it with Splinter

I would like to use a specific profile with splinter. But I don't know what I have to put to which location to get this working.
W0bble
  • 757
  • 1
  • 8
  • 24
4
votes
1 answer

How do I save a webpage to the disk for later scraping using splinter library?

I have the following python code using splinter library for searching a specific term in a website: from splinter import Browser browser =…
dasen
  • 377
  • 4
  • 18
1
2
3
21 22