- jinho
- Posts : 1
Join date : 2009-08-29
Sign / disappear from result of function getHtmlSource
Sat Aug 29, 2009 4:40 pm
I use function GetHtmlSource of selenium to get html source of current page but a lot of sign / disappear from the result. All tags which end with /> this sign / will disappear.
For example:
When i view source code of the page, there a tag . In the result of function getHtmlSource, it will be
-->
Can anyone explain this?
For example:
When i view source code of the page, there a tag
-->
Can anyone explain this?
Re: Sign / disappear from result of function getHtmlSource
Mon Aug 31, 2009 12:06 pm
hi,
I have tried this command and I am getting same html source what I get from view soruce.
I have tried it on google site. The sample snippet are as follows:
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.SeleneseTestCase;
import com.thoughtworks.selenium.Selenium;
public class fckEditor extends SeleneseTestCase
{
public Selenium browser;
public static void main(String arg[]) throws InterruptedException
{
fckEditor obj = new fckEditor();
obj.setUp();
}
public void setUp() throws InterruptedException
{
browser = new DefaultSelenium("localhost",4444,"*iexplore","http://www.google.co.in");
browser.start();
browser.open("http://www.google.co.in");
browser.waitForPageToLoad("30000");
browser.windowMaximize();
String html = browser.getHtmlSource();
System.out.println(html);
}
}
Try this and you will get the full html source code. Best Of Luck.
Bye
I have tried this command and I am getting same html source what I get from view soruce.
I have tried it on google site. The sample snippet are as follows:
import com.thoughtworks.selenium.DefaultSelenium;
import com.thoughtworks.selenium.SeleneseTestCase;
import com.thoughtworks.selenium.Selenium;
public class fckEditor extends SeleneseTestCase
{
public Selenium browser;
public static void main(String arg[]) throws InterruptedException
{
fckEditor obj = new fckEditor();
obj.setUp();
}
public void setUp() throws InterruptedException
{
browser = new DefaultSelenium("localhost",4444,"*iexplore","http://www.google.co.in");
browser.start();
browser.open("http://www.google.co.in");
browser.waitForPageToLoad("30000");
browser.windowMaximize();
String html = browser.getHtmlSource();
System.out.println(html);
}
}
Try this and you will get the full html source code. Best Of Luck.
Bye
- Issue: com.thoughtworks.selenium.SeleniumExcepion: ERROR Server Exception: A result was unexpectedly found in the result holdr
- how to use these methods getHtmlSource() , getLocation() and getTitle()
- INFO - Got result :Error :Element (say user id) not found
- Got result: Timed out after invoke "open("/");" command.
- VERY Very basic help needed for search result validation
Permissions in this forum:
You cannot reply to topics in this forum