Thanks for the reply.
After doing some debugging, I found out that the click is actually applied. The strange thing is that the error occurs :
org.openqa.selenium.ElementClickInterceptedException: element click intercepted: Element is not clickable at point (924, 913)
(Session info: chrome=79.0.3945.88)
Build info: version: '3.14.0', revision: 'aacccce0', time: '2018-08-02T20:19:58.91Z'
System info: host: 'BEC02TQ17BHTD5.local', ip: '10.217.11.203',
os.name: 'Mac OS X', os.arch: 'x86_64', os.version: '10.14.6', java.version: '1.8.0_202'
Driver info: org.openqa.selenium.chrome.ChromeDriver
Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 79.0.3945.88, chrome: {chromedriverVersion: 79.0.3945.36 (3582db32b3389..., userDataDir: /var/folders/8d/bwl_96yd0bx...}, goog:chromeOptions: {debuggerAddress: localhost:54252}, javascriptEnabled: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: MAC, platformName: MAC, proxy: Proxy(), setWindowRect: true, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify}
Session ID: a1853ff8f110e25713bf295941e7dd1c
What happens is that I click a button in a page A (defined as page object) which gets me to a page B (defined as page object). Next I do an at verification of page B which is successful. Then I do some actions in page B and finally do a click on a save button which should do a save action and bring me back to page A. I can actually see during the test run that the save button is clicked and page A is displayed. However after the save action , the error is thrown which is quite strange as the click action is actually performed?? The location mentioned in the error is the exact location of the save button in page B. Also when looking in the geb reports a screenshot is taken of page A when click action has been performed. Any idea why it keeps complaining about element not clickable?