splinter-examples icon indicating copy to clipboard operation
splinter-examples copied to clipboard

just examples of using splinter API to test web applications

Results 1 splinter-examples issues
Sort by recently updated
recently updated
newest added

Could you add code for disabling images with splinter firefox browser? I am doing this: browser = Browser('firefox', profile_preferences=proxy_settings) path = #Given the path browser.visit(path) soup = BeautifulSoup(browser.html, 'html.parser') For...