How to click the back navigation button of the browser using helium?

379 views Asked by At

I am trying to implement helium in my project. I checked the API doc of helium but I didn't find any command to click the back navigation button of the browser.

In the API doc found solution to launch the browser. Code is as following

startFirefox();
startFirefox("google.com");

So I would appreciate if any one can help me with this. Is it possible to integrate selenium and helium all together?

2

There are 2 answers

2
Kumrun Nahar Keya On BEST ANSWER

Well I don't find any way to implement click back navigation of the browser using only helium, So I integrated selenium along with helium

getDriver().navigate().back(); 

It worked for me

3
Chaitanya Pujari On

Even Don't find any way to navigate back using helium

getDriver.navigate().back();

Worked for me!!!