Way to get access a product page "quantity" box element with Corvid to control display (ie. to hide or show)?

Requirement: hide the quanitity box on one specific product page.
Tried : 1. to find element with inspector and corvid code below
question : is there any way to access the 'quantity" box element in order to control the display using corvid? (see image)

My instinct is the answr may be no. I have tried already but want to make sure not missing anything.
Tried to identify the elements with the following code - but it seems to only provide object data.

$w.onReady(function () {
 // TODO: write your page related code here...
    $w('#productPage1').getProduct()
        .then((product) => {
            console.log(product);
        })
});l