📒
Jalenium
  • Jalenium - Selenium Java Made Easy
  • Quick Start
  • Jalenium Commands - Initializing the browser
  • Jalenium Commands - Go to a web URL
  • Jalenium Commands - Click on element
  • Jalenium Commands - Intelligent Click
  • Jalenium Commands - Pseudo Click
  • Jalenium Commands - Type
  • Jalenium Commands - Intelligent Type
  • Jalenium Commands - Forward Navigation
  • Jalenium Commands - Back Navigation
  • Jalenium Commands - Refresh
  • Jalenium Commands - Close Browser
  • Jalenium Commands - Select Drop Down
  • Jalenium Commands - Get Text
  • Jalenium Commands - Take Screenshot
  • Jalenium Commands Take Page Screen Shot
  • Jalenium Commands - Take Element Screen Shot
  • Jalenium - Drag and Drop
  • Jalenium - Get Pseudo Element Syles
  • Jalenium Commands - Scroll to page end
  • Jalenium Commands - Scroll to the top
  • Jalenium Commands - Scroll to the element
  • Jalenium Commands - Wait For Element Present
Powered by GitBook
On this page

Was this helpful?

Jalenium Commands - Initializing the browser

This section we will see how we can initializing the browser in your test. Jalenium uses WebDriver manager and there is no need to additionally download and specify the chrome driver and gecko driver

  • Start Jalenium with chrome add the following command

new Jalenium();
  • Start Jalenium with chrome headless

new Jalenium(true);
  • Start Jalenium with Firefox

new Jalenium("Firefox");
  • Start Jalenium with Firefox headless

new Jalenium("Firefox--headless");

PreviousQuick StartNextJalenium Commands - Go to a web URL

Last updated 5 years ago

Was this helpful?