Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.7k points)

I am trying to build a utility function to output beautiful soup code to a browser I have the following code:

def bs4_to_browser(data):

    from selenium import webdriver

    driver = webdriver.Firefox(path="F:\FirefoxPortable\Firefox.exe")

    driver.get("about:blank")

    data = '<h1>test</h1>'  # supposed to come from BeautifulSoup

    driver.execute_script('document.body.innerHTML = "{html}";'.format(html=data))

    return

when I run this I get:

TypeError at /providers/

__init__() got an unexpected keyword argument 'path'

I am using win7. How to I set the path to the portable firefox executable?

 

 

1 Answer

0 votes
by (62.9k points)

To set the custom path to Firefox you need to use FirefoxBinary:

from selenium.webdriver.firefox.firefox_binary import FirefoxBinary

binary = FirefoxBinary('F:\FirefoxPortable\Firefox.exe')

driver = webdriver.Firefox(firefox_binary=binary)

Or else, add F:\FirefoxPortable to the path environment variable and fire up Firefox in a traditional way:

driver = webdriver.Firefox()

If you are interested to learn Selenium on a much deeper level and want to become a professional in the testing domain, check out Intellipaat’s automation testing certification

Browse Categories

...