admin管理员组

文章数量:1352168

I am trying to read data from json file but I have some trouble. How can I get items from a json file to individual items?

My json file:

[
 {
  "UserName": "[email protected]",
  "Password": "tests123"
 }
]

My method:

element(by.name('username')).sendKeys(browser.params.UserName);
element(by.name('password')).sendKeys(browser.params.Password);

as a result i get

Failed: each key must be a number of string; got undefined

I am trying to read data from json file but I have some trouble. How can I get items from a json file to individual items?

My json file:

[
 {
  "UserName": "[email protected]",
  "Password": "tests123"
 }
]

My method:

element(by.name('username')).sendKeys(browser.params.UserName);
element(by.name('password')).sendKeys(browser.params.Password);

as a result i get

Failed: each key must be a number of string; got undefined
Share Improve this question edited Sep 21, 2017 at 9:15 onetwo12 2,4395 gold badges24 silver badges35 bronze badges asked Sep 21, 2017 at 7:27 danio900409danio900409 2652 gold badges6 silver badges24 bronze badges 1
  • 1 browser.params[0].UserName assuming browser.params = [ { "UserName": "[email protected]", "Password": "tests123" } ] – mplungjan Commented Sep 21, 2017 at 7:28
Add a ment  | 

2 Answers 2

Reset to default 6

You are passing an array of object and not an object, thus, you have to be precise in your variable.

Either directly pass an object

{
  "UserName": "[email protected]",
  "Password": "tests123"
}

Or specify the index in the array

element(by.name('username')).sendKeys(browser.params[0].UserName);
element(by.name('password')).sendKeys(browser.params[0].Password);

My Test was also failing with json file then i converted my datafile into ts file like below

export const DataForSearch =
{
    Login:
    { 
        CorrectCreds: { username: '[email protected]', password: 'tests123' }
    }

};

then use this in my test case like

    import {DataForSearch } from "../DataLogin"

const using = require("jasmine-data-provider");

describe("Login Page", () => {
    using(DataForSearch.Login, (data: any, alldesc: any) => {
    it("Login", () => {
    element(by.name('username')).sendKeys(data.username);
    element(by.name('password')).sendKeys(data.password);
    })
    })
})

you can try typescript file, if you still facing issue.If you face any issue let me know

本文标签: javascriptEach key must be a number of string got undefined protractorStack Overflow