Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6845991
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:34:07+00:00 2026-05-27T00:34:07+00:00

I apologize if this question was asked already before but I could not find

  • 0

I apologize if this question was asked already before but I could not find an answer on google.

I am looking for a testing plugin for each browser, where I could simply record a test (click on a variety of things) and then simply run this test just by clicking ‘run test’. The best if I could write some code about what sort of answers I require (i.e. generated final html), but if that is possible it is ok.

The reason I can’t use stuff like JUnit etc. is because my code uses external webservices (such as payment on an external server, that I can’t access) and I am redirected to different pages during the test, so I assume it has to be a test plugin.

If the plugins would be intergrated with Visual Studio 2010 (or at least the IE plugin) it would be awesome, but I can live without it.

I am reading into iMacros (Chrome, but unfortunately beta) and Selenium(Firefox), but I wanted to know what is the mostly standart way to do that (I assume it was done for ages now). Additionally I need one for IE9, which I did not find yet.

Thanks in advance,
Jozef

ps. I create AJAX heavy webpage, so simple URL based testing is not enough (like AdobeBrowser lab)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T00:34:07+00:00Added an answer on May 27, 2026 at 12:34 am

    Selenium is quite good for web browser automated testing and the latest version works with almost all versions of IE (7 – 9) (I can’t view the documentation at work at the moment) and Firefox 3 – 8, and Chrome 12 upwards.

    There are some good examples on the selenium website and on the http://code.google.com/p/selenium/ site too.

    (For the Chrome browser you’ll also need to download the ChromeiumServer

    Here’s some rough and ready sourcecode I’ve been messing about a while back

    using System;
    using System.Text;
    using System.Collections.Generic;
    using System.Linq;
    using OpenQA.Selenium;
    using OpenQA.Selenium.Firefox;
    using OpenQA.Selenium.Chrome;
    using OpenQA.Selenium.IE;
    using OpenQA.Selenium.Remote;
    using System.Threading;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            const string Path = @"H:\Selenium\chromedriver_win_16.0.902.0\";
    
            static void Main(string[] args)
            {
                TestMethodChromeViaServer();
    
                WebBrowser(TestMethodFf());
                WebBrowser(TestMethodIe());
                WebBrowser(TestMethodChromeDefault());
            }
    
            /// <summary>
            /// Runs the code in the browser.
            /// </summary>
            /// <param name="webDriver">The Web Driver to use to initiate a web browser.</param>
            public static void WebBrowser(IWebDriver webDriver)
            {
                webDriver.Navigate().GoToUrl("http://nerddinner.com/Account/LogOn?returnUrl=%2F#");
    
                IWebElement query = webDriver.FindElement(By.Id("UserName"));
                query.Submit();
    
                var foo = webDriver.FindElement(By.CssSelector("span[for='UserName']"));
    
                webDriver.Quit();
            }
    
            /// <summary>
            /// Launches Google Chrome via the service so multiple tests can be run before closing the service.
            /// </summary>
            public static void TestMethodChromeViaServer()
            {
                var service = ChromeDriverService.CreateDefaultService(Path);
                service.Start();
    
                IWebDriver driver = new RemoteWebDriver(service.ServiceUrl, DesiredCapabilities.Chrome());
    
                WebBrowser(driver);
    
                service.Dispose();
            }
    
            /// <summary>
            /// Creates a Web Driver using Google Chrome.
            /// </summary>
            /// <returns>Web driver with ChromeDriver setup to the correct path.</returns>
            public static IWebDriver TestMethodChromeDefault()
            {
                IWebDriver driver = new ChromeDriver(Path);
    
                return driver;
            }
    
            /// <summary>
            /// Creates a Web Driver using Firefox.
            /// </summary>
            /// <returns>Web driver with FirefoxDriver profile setup.</returns>
            public static IWebDriver TestMethodFf()
            {
                var foxProfile = new FirefoxProfile
                    {
                        AcceptUntrustedCertificates = true
                    };
    
                IWebDriver driver = new FirefoxDriver(foxProfile);
    
                return driver;
            }
    
            /// <summary>
            /// Creates a Web Driver using Internet Explorer.
            /// </summary>
            /// <returns>Web driver with InternetExplorerDriver setup.</returns>
            public static IWebDriver TestMethodIe()
            {
                //// Must set the protected mode on each zone to be the same (on or off), under tools -> security tab
                IWebDriver driver = new InternetExplorerDriver();
    
                return driver;
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I apologise if this question has already been asked on here before but I
Apologies if this question has already been asked but I do not think I
I've searched SO and have been unable to find this question asked before, but
Hopefully no one has asked this question - didn't see it, but I apologize
I apologize if this has already been asked a different way but I couldn't
I apologize if this was asked somewhere else, but I do not know how
I apologize if this has been asked before, but I haven't quite found the
Apologies if this is a duplicate, but I've not managed to find this question
My sincere apologies if this question has been asked, but I really couldn't find
I apologize if this question has been answered already, but I cannot seem to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.