2

Testing a large website for CSS mistakes can be daunting, especially when you have to repeat the same actions over and over again across all the different browsers. So, I wonder if there is a way to control different browsers at the same time, executing the same clicks and scrolls at the same time throughout all open browesers?

Say, I have two screens, 2 browsers are each vertical half of the screen, being able to control all 4 of them would tremendously speed up the time it takes and the quality of testing.

Is this feasible at the moment? has someone written a program to do this?

NullVoxPopuli
  • 61,906
  • 73
  • 206
  • 352

4 Answers4

1

It's not the easiest thing in the world, but you can use Selenium IDE to automate browser tasks in many browsers: http://seleniumhq.org/

You need to set-up Selenium Remote-Control. Never done this myself so I don't know exactly what's involved: http://seleniumhq.org/projects/remote-control/

Robin Winslow
  • 10,908
  • 8
  • 62
  • 91
0

I would reccomend Adobe BrowserLab for this. It let's you pull up instances of your site into several browsers at once and offer tools for comparing css cross-browser. Plus it's free, you just have to make an account with Adobe.

k4t434sis
  • 519
  • 4
  • 17
0

If you have Microsoft's Expression product they have the "Super Preview". It's a simple side by side comparision tool but as far as I know it wont automate clicks like you are asking.

TWood
  • 2,563
  • 8
  • 36
  • 58
0

For simple tasks you may want to try http://tuttijs.com/

However, in order to execute clicks and stuff, you probably need to combine that with Selenium Core. (Or rely on SeleniumRC as mentioned above)

user123444555621
  • 148,182
  • 27
  • 114
  • 126