Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
cyrilgeorge153 opened this issue May 17, 2024 · 0 comments

Comments

@cyrilgeorge153
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants