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

Cannot read property 'exactMatch' of undefined #48

Closed
sswaroopgupta opened this issue Jul 16, 2018 · 1 comment
Closed

Cannot read property 'exactMatch' of undefined #48

sswaroopgupta opened this issue Jul 16, 2018 · 1 comment
Assignees

Comments

@sswaroopgupta
Copy link
Contributor

Expected behavior
Should be able to find the element

Steps to replicate

  • Create a file exactMatch.js
const { browser, openBrowser, goto, listItem, click, link } = require('taiko');
const assert = require("assert");

(async () => {
    try {
        await openBrowser();
        await goto("https://gauge.org/index.html");
        await click(link("Documentation"),{waitForNavigation:true});
        await click("Write Specifications",{waitForNavigation:true})
        await scrollTo(link("Refactoring"))
        await scrollUp("Example")
        await waitFor(5000);

        await closeBrowser();
    } catch (e) {
        console.error(e);
    } finally {
    }
})();
  • Run the taiko command
    taiko exactMatch.js

Version

Version: 0.0.9 (HeadlessChrome/69.0.3452.0)

Blocks #29

@Apoorva-GA
Copy link
Contributor

Should be fixed in 252c6ea

@Apoorva-GA Apoorva-GA self-assigned this Jul 16, 2018
@ghost ghost removed the ready for QA label Jul 17, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants