Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't load omnibug-500.xpi to Firefox 24-26 via Selenium WebDriver (on C#) #9

Closed
leus2009 opened this issue Feb 6, 2014 · 1 comment

Comments

@leus2009
Copy link

leus2009 commented Feb 6, 2014

Manually loads successfully.
All other extensions loads well except Omnibug.

Full listing:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading.Tasks;
using OpenQA.Selenium.Firefox;
using OpenQA.Selenium.Chrome;
using OpenQA.Selenium.IE;
using OpenQA.Selenium;
using OpenQA.Selenium.Safari.Internal;

namespace ConsoleApplication11
{
class Program
{

    static void Main(string[] args)
    {
        {
            FirefoxProfile profile = new FirefoxProfile();


            profile.Clean(); 
    profile.AddExtension(@"D:\SELENIUM\selenium-dotnet-2.39.0\net40\firebug-1.12.0.xpi");
            profile.AddExtension(@"D:\SELENIUM\selenium-dotnet-2.39.0\net40\omnibug-0.5.500.xpi");

            profile.SetPreference("extensions.firebug.currentVersion", "1.12");
            profile.SetPreference("extensions.firebug.allPagesActivation", "on");
            profile.SetPreference("extensions.firebug.defaultPanelName", "net");
            profile.SetPreference("extensions.firebug.net.enableSites", true);

            IWebDriver webDriver = new FirefoxDriver(profile);
            webDriver.Navigate().GoToUrl("http://www.SomeURL.com");
            Console.ReadLine();
        }

    }
}

}

@simpsora
Copy link
Contributor

Thanks for the bug report. This isn't the first time I've heard of Omnibug not working with Selenium.

Do you have any further information? Exceptions, error messages or anything else relevant? Also, what is the exact failure behavior?

I'm keen to get this fixed, but need to understand a little more about what could be going wrong.

Cheers.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants