I want to write a code in C#
- Go to www.abc.com > read the whole text available on the page > save the text to string1 then
- Go to www.xyz.com > read the whole text available on the page > save the text to string2 then
- Compare string1 with string2 to verify they are same
eg.
if string1 = "Hello World"
and string2 = "Hello World"
> test passes
if string1 = "Hello World"
and string2 = "Hello Tom"
> test fails