splinter Questions

7

I'm trying to scrape a page, but I sometimes have trouble clicking a link/button. When the web page loads, then the "loadingWhiteBox" will appear first and then disappear after a few seconds (but...

2

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 typ...
Lester asked 10/2, 2015 at 11:15

3

Solved

I did the following but came across the error: selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH. Please see https://sites.google.com/a/chr...
Phlyctena asked 20/4, 2017 at 20:7

2

I am trying to make simple python program that is opening list of webpages for a user to manually download reports from the site. I don't have any previous experience with preparing exe files.. And...
Silverstein asked 10/6, 2015 at 20:59

2

Solved

Per below, I'm not sure how to troubleshoot this pretty simple usage scenario. I have script (that I run about once a month) that functionally does the identical thing and which used to work as of...
Kyanite asked 20/11, 2017 at 13:33

1

Solved

In an older version of Splinter/Selenium this was said not to be possible. This answer a few years later claims it is possible with JavaScript, but this code doens't work for me (I might have just ...
Sibyls asked 10/5, 2018 at 9:28

1

Once I add the following item to cart: http://www.supremenewyork.com/shop/accessories/wau85w4km/cxv3ybp1w and go to the check out page: https://www.supremenewyork.com/checkout, there is a terms and...
Known asked 30/11, 2017 at 20:36

4

Solved

Can I somehow select a specific element from dropdown list on the page via splinter module in Python? I have the following HTML code: <select id="xyz"> <optgroup label="Group1"> &lt...
Aery asked 23/5, 2014 at 22:6

3

I am doing browser automation using python + splinter. my structure is like this [root] +--start.py +--end.py +--[module1] | +--mod11area1.py | +--mod12area2.py | +--[module1_2] | | +--mod121area1...
Bradawl asked 22/8, 2013 at 12:40

4

Currently taking a web scraping class with other students, and we are supposed to make ‘get’ requests to a dummy site, parse it, and visit another site. The problem is, the content of the dummy s...
Bias asked 5/5, 2017 at 16:26

1

In my python project, I'm using Splinter (https://splinter.readthedocs.io/en/latest/) to open a browser and attempt visit a site: from splinter import Browser browser = Browser('chrome') browser....
Misbegotten asked 27/4, 2017 at 6:7

1

Using Python and Splinter, currently, I need to define exactly what text, option1 to click on when an option is found on a page: from splinter import Browser browser = Browser('chrome') browser....
Oversee asked 24/4, 2017 at 2:35

1

Solved

Currently, I’m filling out the form on a site with the following: browser.fill(‘form[firstname]’, ‘Mabel’) browser.fill(‘form[email]’, ‘[email protected]’) browser.select(‘form[color]’, ‘yell...
Adios asked 21/4, 2017 at 23:50

3

Solved

when using python splinter firefox 47 marionette new webdriver, it gives certificate error when access the website i want, i tried to accept ssl certs with browser = Browser('firefox', capabiliti...
Wynny asked 16/6, 2016 at 20:2

0

I want to login to a https web page using Splinter. However, it seems that cookies are not set when I login. Here is my code: from splinter import Browser import time username = 'blabla' password...
Cityscape asked 19/2, 2016 at 15:44

1

Solved

I am using the splinter 0.7.3 module in python 2.7.2 on a Linux platform to scrape a directory listing on a website using the default Firefox browser. This is the snippet of code that iterates thr...
Bendwise asked 17/9, 2015 at 21:54

2

Solved

So I'm having trouble getting selenium to work with a headless driver, specifically PhantomJS. I'm trying to get it to work on an Ubuntu webserver (Ubuntu 14.04.2 LTS). Running the following comma...
Northey asked 10/9, 2015 at 0:42

2

Solved

I would like to get href value from <a> element in Splinter. Is there any api method for that?
Conjugate asked 16/2, 2014 at 20:49

2

I'm trying to crawl the website "http://everydayhealth.com". However, I found that the page will dynamically rendered. So, when I click the button "More", some new news will be shown. However, usin...
Addy asked 7/11, 2014 at 20:57

1

Solved

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 ...
Siegfried asked 26/5, 2014 at 19:10

1

I'm using Django (1.5.5), selenium (2.41.0), splinter (0.6.0) and phantomjs (1.9.7) for running live tests. While the tests mostly work, every now and then (very often on CircleCI, less often in a...
Outstare asked 11/4, 2014 at 9:10

1

Solved

Today I tried combining django's LiveServerTestCase with splinter and phantomjs webdriver. Here's what I do (simplified version): class Test(LiveServerTestCase): def setUp(self): self.browser ...
Matabele asked 23/12, 2013 at 14:25

1

Solved

I am trying to use the Firefox driver for Splinter to test some responsive design. Naturally, this requires me to resize the browser window. I can't find anything at all about browser resizing in ...
Testudo asked 11/1, 2014 at 11:40
1

© 2022 - 2024 — McMap. All rights reserved.