demandio / ember-prerender

Make your Ember.js web apps crawlable by rendering static HTML on the server.
MIT License
140 stars 13 forks source link

Webdriver/chromedriver support #25

Closed Stanback closed 10 years ago

Stanback commented 10 years ago

Summary of changes:

  1. Added an engine for webdriver/chromedriver
  2. BREAKING CHANGES - Merging three config params (baseUrl, initializeUrl, and applicationPage) into appUrl
  3. Engines now load the URL directory rather than being passed the html source
  4. Filtering of Javascript and CSS resources is left to the engine (JSDOM or Phantom) and configurable by setting the ignoreAssets config property
gdennie commented 9 years ago

given <html> ... <title>Something</title> ... </html>

ChromeDriver().FindElementByTagName("title") <> String.Empty :FAILS ChromeDriver().Title = "Something" :SUCCESS

I gave up trying to find where the source code is...