Tutorial: View.getInfo

View.getInfo

Gets the info for a View.

Example

let view;
async function createView() {
    const me = await fin.Window.getCurrent();
    return fin.View.create({ 
        name: 'viewNameGetInfo', 
        target: me.identity, 
        bounds: {top: 10, left: 10, width: 200, height: 200} 
    });
}

async function getViewInfo() {
    view = await createView();
    console.log('View created.');

    await view.navigate('https://google.com');
    console.log('View navigated to given url.');

    return view.getInfo();
}

getViewInfo()
    .then((info) => console.log('View info fetched.', info))
    .catch(err => console.log(err));