Posts

Showing posts from December 12, 2018

file: symbol lookup error: file: undefined symbol: magic_setparam

Image
up vote 2 down vote favorite My file command is broken. $ file file: symbol lookup error: file: undefined symbol: magic_setparam $ which file /usr/local/bin/file $ ldd $(which file) linux-vdso.so.1 (0x00007fffc43fd000) libmagic.so.1 => /usr/local/lib/libmagic.so.1 (0x00007fe48cd2d000) libc.so.6 => /lib/x86_64-linux-gnu/libc.so.6 (0x00007fe48cb43000) libz.so.1 => /lib/x86_64-linux-gnu/libz.so.1 (0x00007fe48c926000) /lib64/ld-linux-x86-64.so.2 (0x00007fe48cf86000) $ # I have a file command in /usr/bin/ as well $ # but the same thing happens, and the ldd output for it $ # is identical to the one above $ /usr/bin/file /usr/bin/file: symbol lookup error: /usr/bin/file: undefined symbol: magic_setparam I tried reinstalling the file command, as well as reinstalling libmagic (and libmagic-dev ) but to no av

How to upload a file in Selenium WebDriver with no 'input' element

Image
up vote 3 down vote favorite 3 I have a HTML page with button named "Upload" and id: btn-import-questions . The element: <button class="btn btn-success btn-sm col-lg-11" id="btn-import-questions" data-ts-file-selector="questions-import-init"> Upload&nbsp;<i class="fa fa-upload"></i></button> I tried a Selenium Java code like this: driver.findElement(By.id("btn-import-questions")).sendkeys("C:/path/to/file.xlsx"); But since this is an upload button and not an input-type element, the above code is not working. java selenium testing selenium-webdriver automation share | improve this question