splinter icon indicating copy to clipboard operation
splinter copied to clipboard

splinter - python test framework for web applications

Results 80 splinter issues
Sort by recently updated
recently updated
newest added

I recently opened an issue #1080 . When we try to redirect the user to another page, after having sent a file through the form. The following error occurs: ```...

Hi, I have a question. `browser.attach_file` work with flask? I've been trying to work with this for almost 1 month. :( an error always happens when the redirect is done:...

I'm trying to run a program in a Docker container using Splinter. Here is my Dockerfile ``` FROM python:3.7-alpine COPY requirements.txt . RUN apk update && \ apk add make...

New to using splinter, just pip installed into a venv, and get a `ModuleNotFoundError` when trying to import: ``` % pip install splinter Looking in indexes: https://pypi.org/simple Collecting splinter Using...

Using a Django client, checkboxes are considered to be LxmlControlElements, where `click` then will submit the form: https://github.com//cobrateam/splinter/blob/986ce0a10c52f08196b32b91f752182cb7517892/splinter/driver/lxmldriver.py#L421-L433 I've used `browser.find_by_id("id_foo").first.click()`. The workaround is using `browser.check("foo")`.

bug
django

Solution for: #8 #162 #684 This PR adds a generic find method to replace the browser level actions. Currently it uses name, so the following are equivalent: ``` browser.fill('v', 'my_text')...

Serializing a form is meant to remove inputs of type submit, so that they are not sent: https://github.com//cobrateam/splinter/blob/c04a75dede7f314bba69a7ff188c147417647b12/splinter/driver/lxmldriver.py#L50-L60 (changed in https://github.com//cobrateam/splinter/commit/ad28ab4aeb56cde66a20e67cb3261324eecebeec (#611, for #595)). However, since the change it will...

django

I use Ubuntu 20 on the Windows Subsystem for Linux v2 (WSL2) on Windows 11. I'd like to use Splinter to automate some browsing using my Windows-installed Chrome. I have...

question

``` # fails! probably Splinter 0.11.0 error # selEl.select(opt.value)

help wanted
NeedsInvestigation
django

First thing first: Thanks for your time. Your docs: [Django driver](http://splinter.cobrateam.info/docs/drivers/django.html) Missing (at least): - click(self) - check(self) - uncheck(self) - checked(self) My code (snippet): ``` def login(self, name_or_email, password,...

help wanted
django