skip to Main Content

Not getting the data from web page with Selenium (Python) – Html

I'm trying to get a table from a dynamic webpage using selenium but it's giving me issues. This is the Python code: from selenium import webdriver url = 'https://draft.shgn.com/nfc/public/dp/788/grid' driver = webdriver.Chrome('C:chromedriver_win32chromedriver.exe') global_dynamicUrl = "https://draft.shgn.com/nfc/public/dp/788/grid" driver.get(global_dynamicUrl) table_area = driver.find_element("xpath", '//*[@id="result"]/table')…

VIEW QUESTION

sum total of values inside dynamic inputs with same class and Auto re-sum total of values when I change any input values or add / delete dynamic row – Jquery

$("#add-btn").click(function() { $("#dynamic").append('<tr>' + '<td class="td">' + '<input type="number" name="Debit" class="form-control Debit"/>' + '</td>' + '<td class = "td" >' + '<input type = "number" class = "form-control credit" />' + '</td>' + '<td class = "td2" >' + '<button…

VIEW QUESTION

Jquery Post with dynamic key

I would like to send a post request. But I have to change the key. function call(obj) { console.log("Call " + obj.value); if (obj.value == 1) { $.post( "index.htm", { '"webdata".web[1].Taster': '1'} ); } I would like to change [1]…

VIEW QUESTION
Back To Top
Search