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
harishbansal90
Posts : 4
Join date : 2011-04-12

Unable to test the next web page by Html Unit Driver Empty Unable to test the next web page by Html Unit Driver

Thu Jun 16, 2011 9:16 pm
Hi,

I am using selenium 2 in C# language. firstly i am using Firefox
Driver.

IWebDriver driver = new FirefoxDriver();
driver.Navigate().GoToUrl("http://www.google.com");
IWebElement element = driver.FindElement(By.Name("q"));
element.SendKeys("testing softwares");
element=driver.FindElement(By.Name("btnG"));
element.click();

With Firefox Driver, i can easily go to the second page after the
statement element.click(); and continue to test next webpage.

Now, i want to use HtmlUnit Driver(Remote) instead of Firefox driver because i
don't want to open the browser.

ICapabilities desiredCapabilities = DesiredCapabilities.HtmlUnit();
IWebDriver driver = new RemoteWebDriver(desiredCapabilities);
driver.Navigate().GoToUrl("http://www.google.com");
IWebElement element = driver.FindElement(By.Name("q"));
element.SendKeys("testing softwares");
element=driver.FindElement(By.Name("btnG"));
element.click();

but it does not go to the second page after this statement
element.click(); If i test the second page with some more commands then it shows error.
sometimes it gives error like "unable to locate
elements..............." or sometimes it shows error like "No response
from the server with url ............ "

so how can i go to second page with HTML UNIT driver?
i am using
OS-Windows XP professional SP 3
selenium--server-standalone-2.0b3.jar
browser-Firefox 3.6.17

please help me.
Sad
i am so sad for this problem.

thank you
avatar
sairoshan
Posts : 3
Join date : 2011-07-01

Unable to test the next web page by Html Unit Driver Empty Re: Unable to test the next web page by Html Unit Driver

Fri Jul 29, 2011 1:28 am
problem might be in the version of selenium u are using try selenium standalone 2.2.0
Back to top
Permissions in this forum:
You cannot reply to topics in this forum