akephalos icon indicating copy to clipboard operation
akephalos copied to clipboard

Headless HTMLUnit powered browser for Capybara

Results 36 akephalos issues
Sort by recently updated
recently updated
newest added

I was receiving similar errors to Issue #63. ``` DRb::DRbConnError: druby://myhostname:17811 - # ``` So I started investigating, and I found that in [63d054](https://github.com/bernerdschaefer/akephalos/commit/63d0541b7f4368ecd754ea087f13c1058008b5c6#L0L25) it was set explicitly to bind...

The change in the call to `IO.popen` in `remote_client.rb` is taken from https://github.com/bernerdschaefer/akephalos/issues#issue/18/comment/485887 . Additionally I had to replace `":"` with `File::PATH_SEPARATOR` in two places in `bin/akephalos`. With these changes,...

Hi, I am trying to test Facebook connect integration with my app, I can login to facebook, and executing some javascript unauthorize my app for testing authorization. Shit happens when...

Getting this error when trying to run features in Akephalos. I don't have time to investigate this much further, but thought I'd post it here in case it rings a...

I am using akephalos with cucumber and capybara. I switched from the selenum driver to akephalos and now I get a lot of failing features due to encoding problems. Since...

I have a select element that is disabled by default on the page. Clicking a checkbox will enable this select menu to be used with the following Javascript... ``` $('#checkbox_element_id').live('change',function(){...

I have no idea even how to begin tracking this down, but we have a cucumber feature that crash randomly on a "I press" step. It crashes most of the...

I switched to akephalos and now get this error when running cucumber tests: ``` FPermGen space (Java::JavaLang::OutOfMemoryError) java.lang.OutOfMemoryError: PermGen space rake aborted! Command failed with status (255): [bundle exec /Users/wowzers/.rvm/rubie...]...

Hi, I have the following step definition: ``` When /^I click on the operator delete button$/ do node = page.find(:xpath, '//a[contains(@class, "delete")]') page.evaluate_script('window.confirm = function() { return true; }') click_link(node.text)...

Ive narrowed a problem I'm having down to this. I have these cucumber steps: And I press "Save" And I press "Save" I tcpdump the connection to the web server....