Here are the steps to run your Selenium tests against Internet Explorer.
Create the tests
Install Selenium IDE from http://seleniumhq.org
Record your tests in Firefox using the Selenium IDE
Click File > Create New Test
Click the record button and create your test
Click the record button to stop the test
Save your test
Click Options > Format > C# to get [...]
I wanted to easily add theme support to yonkly, so that others can install it and modify its look and feel as they please. I also wanted it to be as easy as installing a theme in wordpress.
I created a themes folder under the content folder
Then I referenced my css file in the master [...]
I spent a few days playing with Ruby on Rails a while back. During the learning experience, there was one particular feature that I really liked. It was the database migration scripts that get automatically generated for you. I always wished I had something like this in the windows (asp.net) world. It turns out there [...]
I am working on a feature that will let me import twitter messages to yonkly and wanted to write a test for it. The method is private and I couldn’t get the unit test to see it. I also didn’t want to use the private accessor class generate by Visual Studio because I was mocking [...]
Here is a quick method to shorten URLs using the TinyUrl API in .net – C# and VB
C#
public static string MakeTinyUrl(string Url)
{
try
{
if (Url.Length <= 30)
{
return Url;
}
if (!Url.ToLower().StartsWith("http") && !Url.ToLower().StartsWith("ftp"))
{
Url = "http://" + Url;
}
var request = WebRequest.Create("http://tinyurl.com/api-create.php?url=" + Url);
var res = request.GetResponse();
string text;
using (var reader = new StreamReader(res.GetResponseStream()))
{
text = reader.ReadToEnd();
}
return text;
}
catch (Exception)
{
return Url;
}
}
VB
Public Shared Function MakeTinyUrl(ByVal [...]
Monday, January 19, 2009
Comments