Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / tools / telemetry / telemetry / page / actions / interact.py
index b60cc00..4f30830 100644 (file)
@@ -7,11 +7,6 @@ from telemetry.page.actions import page_action
 class InteractAction(page_action.PageAction):
   def __init__(self, attributes=None):
     super(InteractAction, self).__init__(attributes)
-    self._SetTimelineMarkerBaseName('InteractAction::RunAction')
 
   def RunAction(self, page, tab):
-    tab.ExecuteJavaScript(
-        'console.time("' + self._GetUniqueTimelineMarkerName() + '")')
     raw_input("Interacting... Press Enter to continue.")
-    tab.ExecuteJavaScript(
-        'console.timeEnd("' + self._GetUniqueTimelineMarkerName() + '")')