automationhelium

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


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?


Solution

  • 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