Extracting Data from NetSuite
Month: February 2023
How to get all table cell value from a table
Description To get all table cell value on a table by using the code below Use a loop to get the values of all cells. You can also get the values of all cells in the table by the following method. How to return the number of cells in the table’s first row.
Difference between background-size: cover and background-size: contain
background-size: contain ensures that the entire background image will fit the background area, keeping its original aspect ratio. If the background area is smaller than the image, the image will shrink so that it can fit the background area. If the background area is either taller or wider than the image, then any parts of the… Continue reading Difference between background-size: cover and background-size: contain
Logout using selenium web driver with dynamically handling the dropdown
Testing steps: Load the page using the given URL (Log in | Register (formsscasb.tk)) Login using valid credentials → (Email: radhika.rakesh@jobinandjismi.com, Password: test@12345) Select the arrow dropdown near the account name at the top right of the page and selects the logout option Dynamically handling the dropdown Script: public static void main(String[] args) throws Exception… Continue reading Logout using selenium web driver with dynamically handling the dropdown
Search a item using selenium webdriver
Testing steps: Load the page using the given URL (Log in | Register (formsscasb.tk)) Login using valid credentials → (Email: radhika.rakesh@jobinandjismi.com, Password: test@12345) Select the search icon Enter an item into the search field → (62-058 High Yield MICR Toner Cartridge: HP LaserJet M506x) Select the Go button View and select the product to view… Continue reading Search a item using selenium webdriver
“Please Enter a Value for Amount” when Submit order in sitebuilder site
Shopper encounters the error “An unexpected error occurred. Please go back and try again. Please Enter a Value for Amount” when submit order a special product checked but special price is not given. Go to Commerce > Websites > Website List Website record: Click Edit Click Setup tab Take note of the Price Level set Then, search for the Item… Continue reading “Please Enter a Value for Amount” when Submit order in sitebuilder site
Hide Website Category From An Audience
Scenario At times, users would like to hide certain item catalogs or categories from a select group of customers or audiences to better market their items at the right demographic. This can also be used when setting up new categories before officially launching them on the website. Solution In order to hide web site categories… Continue reading Hide Website Category From An Audience
Regex For PO BOX Address
If a PO Box is present at the address, the code below returns true.
Duplicate Transfer Order Lines in saved search
Scenario How to remove duplicate Transfer Order Lines in Transfer Order saved search Solution Click Edit to modify the Search Click Criteria tab Click Standard sub tab(add these criteria’s) Main Line = False Tax Line = False Shipping Line= False COGS Line= False Transaction line type = is Item Click Save or Save & Run button
Why wp_enqueue_style() not Working?
First step is to ensure you are using the correct path of the CSS file. For the responsive Directory use Example: The second step is to ensure that wp_head() is being called on the page you are displaying. It can be placed in your header template (in between <head></head tags) or on top of archives/post files etc.… Continue reading Why wp_enqueue_style() not Working?