karate icon indicating copy to clipboard operation
karate copied to clipboard

back() method in Karate UI testing is taking more than 30 seconds to complete

Open cyrilgeorge153 opened this issue 1 month ago • 0 comments

Feature file:

Feature: Browser Navigation Methods

  Scenario: back(), forward()
    * configure driver = { type: 'chrome' }
    * driver 'https://the-internet.herokuapp.com/'
    * maximize()
    * print "title is:",driver.title
    * delay(2000)
    * driver 'https://www.saucedemo.com/'
    * print "title is:",driver.title
    * delay(2000)
    * back()
    * print "title is:",driver.title
    * delay(2000)
    * forward()
    * print "title is:",driver.title
    * delay(2000)

Html Report

image

Karate Version: 1.4.1

cyrilgeorge153 avatar May 17 '24 11:05 cyrilgeorge153