I need help adding Firefox options in my test script. How do I add them in Pytest?

I need help adding Firefox options in my test script. How do I add them in Pytest?

Hey Tom-dale,

You can pass the Firefox options as given below:

def firefox_options(firefox_options):
    firefox_options.binary = '/path/to/firefox-bin'
  return firefox_options