Rob Gilton

Results 13 comments of Rob Gilton

Looks like this is already represented as a goal in #394

I worked out that I needed to do `pip install splinter[selenium3]` then install geckodriver etc. The "installation guide" nor the "splinter tutorial" sections of the documentation told that I had...

... plus it'd be great if the exception that I've quoted above made a bit more sense. Presumably it's trying to use some sort of default driver? If it is,...

I think the bugfix is probably quite simple: 1. Make the docs say in the tutorial or installation guide that one has to install a 'driver' to make it work...

> Add indirect=True Hi @RonnyPfannschmidt. I tried this, as I think this is what you meant: ```py from pytest import fixture, mark @fixture def param() -> int: return 1 @fixture...

> Please add the parameter to the second main fixture as well, Yes, it works if the `main` fixture within `TestFoo` takes the `param` fixture but does not use it:...

Hi @bepaald. The main reason it'd be good to have the tooling that generated the build script committed is that it becomes possible for others to easily modify the build...

I'd like to add that a key application of this is to enable the building of standalone zipapps that contain all of their dependencies. I have some workflows that use...

I frequently use `pipenv shell`, and the killer feature of this is that it starts _a new_ shell. Whereas activating a virtual environment modifies the currently running shell. This means...

> You basically need to allocate a pty, hook it up with the parent pty and then send key presses into it to manipulate the shell environment. It's pretty hacky...