Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
mhroy
Posts : 3
Join date : 2010-08-27

Calling C# selenium methods between classes Empty Calling C# selenium methods between classes

Mon Aug 30, 2010 11:43 pm
I have two classes.
1) Environment.cs - where I set up all sorts of general methods.
2) AboutPage.cs - actual test case.

I have AboutPage.cs pull methods from Environment.cs In this case it is page loading time. When I try to build it, it gives me an error: : An object reference is required for the non-static field, method, or property Environment.cs

I am new to C#. Does anyone know how to solve this problem? I am attaching source code for both methods below.
Thanks!





using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using NUnit.Framework;
using Selenium;

namespace OldVersion
{
[TestFixture]
public class Environment
{
private ISelenium selenium;
private StringBuilder verificationErrors;

[Test]
public static void MeWaitForPageToLoad()
{
selenium.WaitForPageToLoad("30000");
}

}
}







using System;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;
using NUnit.Framework;
using Selenium;

namespace OldVersion
{
[TestFixture]
public class AboutPage
{
private ISelenium selenium;
private StringBuilder verificationErrors;

[SetUp]
public void SetupTest()
{
selenium = new DefaultSelenium("localhost", 4444, "*iexplore", "http://*******.com/");
selenium.Start();
verificationErrors = new StringBuilder();
}

[TearDown]
public void TeardownTest()
{
try
{
selenium.Stop();
}
catch (Exception)
{
// Ignore errors if unable to close the browser
}
Assert.AreEqual("", verificationErrors.ToString());
}

[Test]
public void FunctionsAboutPage()
{
selenium.Open("/en/default.aspx");
Environment.MeWaitForPageToLoad();
selenium.Click("ctl00_TopMenu1_About");
Environment.MeWaitForPageToLoad();
Assert.IsTrue(selenium.IsTextPresent("Software Development"));
Assert.IsTrue(selenium.IsTextPresent("Alliances"));
Assert.IsTrue(selenium.IsElementPresent("//img[@alt='Climate Savers']"));
Assert.IsTrue(selenium.IsElementPresent("//img[@alt='Novell']"));
Assert.IsTrue(selenium.IsElementPresent("//img[@alt='LANDesk']"));
Assert.IsTrue(selenium.IsElementPresent("//img[@alt='Microsoft']"));
Assert.IsFalse(selenium.IsTextPresent("asdfwc"));
}
}
}
avatar
snookala
Posts : 4
Join date : 2010-09-03

Calling C# selenium methods between classes Empty Re: Calling C# selenium methods between classes

Fri Sep 03, 2010 10:21 pm
roy,

since it is public you are getting that problem. Use static class to make use of methods without creating objects from other classes.

use "public static class Environment" instead public class Environment

cheers
Back to top
Permissions in this forum:
You cannot reply to topics in this forum