Bug 559853 

Change-Id: Ida8d5861aaf3e11a561a212e2083200227701fda
diff --git a/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/WebBrowserIEImpl.java b/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/WebBrowserIEImpl.java
index 188a398..86f4f29 100644
--- a/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/WebBrowserIEImpl.java
+++ b/plugins/org.eclipse.actf.model.ui.editors.ie/src/org/eclipse/actf/model/internal/ui/editors/ie/WebBrowserIEImpl.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2007, 2008 IBM Corporation and Others
+ * Copyright (c) 2007, 2020 IBM Corporation and Others
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -173,11 +173,13 @@
 		// TODO rename?
 		errorUrl = null;
 		browserComposite.goBack();
+		domByCom = new DomByCom(getBrowserAddress());
 	}
 
 	public void goForward() {
 		errorUrl = null;
 		browserComposite.goForward();
+		domByCom = new DomByCom(getBrowserAddress());
 	}
 
 	public void navigateStop() {
@@ -199,6 +201,7 @@
 		}
 		errorUrl = null;
 		browserComposite.refresh();
+		domByCom = new DomByCom(getBrowserAddress());
 	}
 
 	/**